1 compute.instance.update类型的消息

需要配置notify_on_state_change参数,可以为空,或者vm_state,或者vm_and_task_state,

当虚拟机的状态或者task状态发送变化时发送消息:
    cfg.StrOpt('notify_on_state_change',
        help='If set, send
compute.instance.update notifications on instance '
             'state
changes.  Valid values are None for no notifications, '
            
'"vm_state" for notifications on VM state changes, or '
            
'"vm_and_task_state" for notifications on VM and task state '
            
'changes.'),

默认为空,即不发送。

发送函数为:notification.send_update:

def send_update(context, old_instance, new_instance, service="compute",host=None):

    """Send compute.instance.update notification to report any changes occurred

    in that instance

"""

主要用在nova/object/instance.py的save函数中,当instance发送改变需要写入DB时调用。

在nova/compute/api.py 的_provision_instances中在创建instance时也会调用send_update_with_states发送。

  • 发送函数最后都是调用

    def _send_instance_update_notification中的
    rpc.get_notifier(service, host).info(context,
    'compute.instance.update', payload)

消息格式:

tenant_id: Tenant ID that owns the this instance (string)

user_id: User ID that owns this instance (string)
instance_id: Nova instance ID of this instance (string)
instance_type: Name of the instance type ('flavor') of this instance. (string)
instance_type_id: Nova ID for instance type ('flavor') of this instance. (string)
display_name: User selected display name for instance.
created_at: Timestamp for when this instance's record was created in Nova (string, formatted "YYYY-MM-DD hh:mm:ss.ssssss")
launched_at: Timestamp for when this instance was last launched by hypervisor. (string, formatted "YYYY-MM-DD hh:mm:ss.ssssss")
image_ref_url: Image URL (from Glance) that this instance was created from. (string)
image_metadata: array of key-value pairs representing the metadata from the image from which the instance was built (array)
audit_period_begining: Timestamp of beginning of audit period. (string, formatted "YYYY-MM-DD hh:mm:ss.ssssss")
audit_period_ending: Timestamp of end of audit period. (string, formatted "YYYY-MM-DD hh:mm:ss.ssssss")
bandwidth: Hash listing bandwidth used for each network this instance is connected to. Keys will be network labels, values will be hashes containing the keys 'bw_in', and 'bw_out', listing the incoming, and outgoing bandwith, respectively, used by that instance, on that network, for that audit period. Bandwith is reported in bytes.
old_state: Prior state of instance. (string, such as 'active' or 'deleted')
state: Current state of instance. (string, such as 'active' or 'deleted')
state_description: Additional human readable description of current state of instance.
fixed_ips: list of ip addresses formatted like [{"floating_ips": [], "meta": {}, "type": "fixed", "version": 4, "address": "10.0.0.9", "label": "public"}] assigned to instance.
memory_mb: memory allocation for this instance (in mb)
disk_gb: disk allocation for this instance (in gb)

2. api_faults

需要配置notify_api_faults,默认为False。

cfg.BoolOpt('notify_api_faults', default=False,
        help='If set, send api.fault
notifications on caught exceptions '
             'in
the API service.'),

当api调用失败,在异常处理中发送。
用在send_api_fault
    rpc.get_notifier('api').error(common_context.get_current()
or
                                 
nova.context.get_admin_context(),
                                 
'api.fault',
                                 
payload)
publish ID:'api'
类型:'api.fault'

用在nova/api/openstack/__init__.py:作为一个FaultWrapper的中间件
配置在etc/nova/api-paste.ini:paste.filter_factory
= nova.api.openstack:FaultWrapper.factory
3. compute.instance*

nova/compute/utils.py
发送函数:def notify_about_instance_usage
method(context, 'compute.instance.%s' % event_suffix, usage_info)
param event_suffix: Event type like "delete.start" or "exists

被waper在:    
def _notify_about_instance_usage(self, context, instance, event_suffix,
                                    
network_info=None, system_metadata=None,
                                    
extra_usage_info=None, fault=None):
       
compute_utils.notify_about_instance_usage(
           
self.notifier, context, instance, event_suffix,
           
network_info=network_info,
           
system_metadata=system_metadata,
           
extra_usage_info=extra_usage_info, fault=fault)
主要用在nova/compute/manager.py,还有def _build_and_run_instance:
self._notify_about_instance_usage(context, instance, 'create.start',
比如:event_type':
u'compute.instance.reboot.start
compute.instance.create.start
compute.instance.exists
compute.instance.create.end

格式为:

compute.instance.rebuild.start/.end:

Usage notification upon rebuild of instance.
tenant_id: Tenant ID that owns the this instance (string)
user_id: User ID that owns this instance (string)
instance_id: Nova instance ID of this instance (string)
instance_type: Name of the instance type ('flavor') of this instance. (string)
instance_type_id: Nova ID for instance type ('flavor') of this instance. (string)
display_name: User selected display name for instance.
created_at: Timestamp for when this instance's record was created in Nova (string, formatted "YYYY-MM-DD hh:mm:ss.ssssss")
launched_at: Timestamp for when this instance was last launched by hypervisor. (string, formatted "YYYY-MM-DD hh:mm:ss.ssssss")
image_ref_url: Image URL (from Glance) that this instance is being rebuilt from. (string)
state: Current state of instance. (string, such as 'active' or 'deleted')
state_description: Additional human readable description of current state of instance.
fixed_ips: list of ip addresses formatted like [{"floating_ips": [], "meta": {}, "type": "fixed", "version": 4, "address": "10.0.0.9", "label": "public"}] assigned to instance.
memory_mb: memory allocation for this instance (in mb)
disk_gb: disk allocation for this instance (in gb)

其中compute.instance.exists用来做audit

https://wiki.openstack.org/wiki/NotificationEventExamples

格式为:

compute.instance.exists:

There is no .start/.end event for this activity ... just the 'compute.instance.exists' event.

Periodic usage notification generated by the instance-usage-audit cron job. These usages are generated for each instance that was active during the specified audit period.
tenant_id: Tenant ID that owns the this instance (string)
user_id: User ID that owns this instance (string)
instance_id: Nova instance ID of this instance (string)
instance_type: Name of the instance type ('flavor') of this instance. (string)
instance_type_id: Nova ID for instance type ('flavor') of this instance. (string)
display_name: User selected display name for instance.
created_at: Timestamp for when this instance's record was created in Nova (string, formatted "YYYY-MM-DD hh:mm:ss.ssssss")
launched_at: Timestamp for when this instance was last launched by hypervisor. (string, formatted "YYYY-MM-DD hh:mm:ss.ssssss")
image_ref_url: Image URL (from Glance) that this instance was created from. (string)
image_meta: Dictionary of key-value pairs representing metadata from the image the instance was built from.
audit_period_begining: Timestamp of beginning of audit period. (string, formatted "YYYY-MM-DD hh:mm:ss.ssssss")
audit_period_ending: Timestamp of end of audit period. (string, formatted "YYYY-MM-DD hh:mm:ss.ssssss")
bandwidth: Hash listing bandwidth used for each network this instance is connected to. Keys will be network labels, values will be hashes containing the keys 'bw_in', and 'bw_out', listing the incoming, and outgoing bandwith, respectively, used by that instance, on that network, for that audit period. Bandwith is reported in bytes.
state: Current state of instance. (string, such as 'active' or 'deleted')
state_description: Additional human readable description of current state of instance.
fixed_ips: list of ip addresses formatted like [{"floating_ips": [], "meta": {}, "type": "fixed", "version": 4, "address": "10.0.0.9", "label": "public"}] assigned to instance.
memory_mb: memory allocation for this instance (in mb)
disk_gb: disk allocation for this instance (in gb) 

https://wiki.openstack.org/wiki/SystemUsageData

https://review.openstack.org/#/c/224755/

nova notification的更多相关文章

  1. Neutron 理解(5):Neutron 是如何向 Nova 虚机分配固定IP地址的 (How Neutron Allocates Fixed IPs to Nova Instance)

    学习 Neutron 系列文章: (1)Neutron 所实现的虚拟化网络 (2)Neutron OpenvSwitch + VLAN 虚拟网络 (3)Neutron OpenvSwitch + GR ...

  2. Android Notification 详解(一)——基本操作

    Android Notification 详解(一)--基本操作 版权声明:本文为博主原创文章,未经博主允许不得转载. 微博:厉圣杰 源码:AndroidDemo/Notification 文中如有纰 ...

  3. Android Notification 详解——基本操作

    Android Notification 详解 版权声明:本文为博主原创文章,未经博主允许不得转载. 前几天项目中有用到 Android 通知相关的内容,索性把 Android Notificatio ...

  4. android Notification介绍

    如果要添加一个Notification,可以按照以下几个步骤 1:获取NotificationManager: NotificationManager m_NotificationManager=(N ...

  5. Android种使用Notification实现通知管理以及自定义通知栏(Notification示例四)

    示例一:实现通知栏管理 当针对相同类型的事件多次发出通知,作为开发者,应该避免使用全新的通知,这时就应该考虑更新之前通知栏的一些值来达到提醒用户的目的.例如我们手机的短信系统,当不断有新消息传来时,我 ...

  6. Missing Push Notification Entitlement 问题

    最近打包上传是遇到一个问题: 描述: Missing Push Notification Entitlement - Your app includes an API for Apple's Push ...

  7. 笔记:Memory Notification: Library Cache Object loaded into SGA

    笔记:Memory Notification: Library Cache Object loaded into SGA在警告日志中发现一些这样的警告信息:Mon Nov 21 14:24:22 20 ...

  8. Nova PhoneGap框架 第一章 前言

    Nova PhoneGap Framework诞生于2012年11月,从第一个版本的发布到现在,这个框架经历了多个项目的考验.一直以来我们也持续更新这个框架,使其不断完善.到现在,这个框架已比较稳定了 ...

  9. Nova PhoneGap框架 总结

    Nova PhoneGap Framework 是完全针对PhoneGap应用程序量身定做的,在这个框架下开发的应用程序很容易实现高质量的代码,很容易让程序拥有很好的性能和用户体验. 在经历了多个项目 ...

随机推荐

  1. WPF中DPI的问题

    先搞清楚一下几个概念: DPI:dots  per  inch ,每英寸的点数.我们常说的鼠标DPI,是指鼠标移动一英寸的距离滑过的点数:打印DPI,每英寸的长度打印的点数:扫描DPI,每英寸扫描了多 ...

  2. .NET架构师必备知识

    .NET架构师,我归纳一下要学的知识: 成为优秀程序员,需要学好的知识: 1. 面向对象编程.UML画图.设计模式.代码重构 2. 常用ORM工具 3.  MVC,WCF,XMl, JQuery ,S ...

  3. 【转】在服务器上排除问题的头五分钟&常用命令

    转自:https://blog.csdn.net/l821133235/article/details/80103106(在服务器上排除问题的头五分钟) 遇到服务器故障,问题出现的原因很少可以一下就想 ...

  4. 修改本机域名localhost为任意你想要的名称

    web项目研发中,测试的时候项目路径与发布以后的路径不一致,项目组之间的路径不一致,这样会加大工作量,这个时候我们可以统一一下开发的路径,这样可以省很多事,话不多说,看下面教程: 在系统盘中的如下路径 ...

  5. Vue页面上实时显示当前时间,每秒更新

    有时候我们需要在页面上添加一个类似时钟的东西来实时显示当前时间,这个时候我们可以利用定时器来完成这个功能 <div id="app"> {{date}} </di ...

  6. 我的Android进阶之旅------>修改Android签名证书keystore的密码、别名alias以及别名密码

    转载于:http://blog.k-res.net/archives/1229.html  和 http://blog.k-res.net/archives/1671.html ADT允许自定义调试用 ...

  7. openresty安装文档

    一.OpenResty简介    OpenResty是一个基于 Nginx与 Lua的高性能 Web平台,其内部集成了大量精良的 Lua 库.第三方模块以及大多数的依赖项.用于方便地搭建能够处理超高并 ...

  8. R&python机器学习之朴素贝叶斯分类

    朴素贝叶斯算法描述应用贝叶斯定理进行分类的一个简单应用.这里之所以称之为“朴素”,是因为它假设各个特征属性是无关的,而现实情况往往不是如此. 贝叶斯定理也称贝叶斯推理,早在18世纪,英国学者贝叶斯(1 ...

  9. 剑指offer 面试36题

    面试36题: 题:二叉搜索树与双向链表 题目:输入一棵二叉搜索树,将该二叉搜索树转换成一个排序的双向链表.要求不能创建任何新的结点,只能调整树中结点指针的指向. 解题思路一:由于输入的一个二叉搜索树, ...

  10. 字节流和字符流 in Java

    @0: 深入理解Java中的流(Stream) @1:字节流:java.io.InputStream:public abstract class InputStreamThis abstract cl ...