Re: [openstack-dev] [ceilometer] nova api.fault notification isn't collected by ceilometer

2015-02-12 Thread gordon chung
Yep, that's what i'm looking for, thanks, 
another notification from nova that is missed in ceilometer is info from nova 
api:
https://github.com/openstack/nova/blob/master/nova/notifications.py#L64
this notify_decorator will decorate every nova/ec2 rest api and send out a 
notification for each api actions:
https://github.com/openstack/nova/blob/master/nova/utils.py#L526
from which will send out notification like: %s.%s.%s % (module, key, method) ,
and no notification plugin in ceilometer to deal with them.
Let me know if i should file a bug for this.
sorry, i missed this. so as i understand it, we do capture these values in 
ceilometer as they are published on same INFO topic. that said, they aren't 
converted to meters/samples but only stored as events (if you have events 
enabled).  is there something specifically measurable in these notifications? 
if so, we could look at adding it to ceilometer.
cheers,gord   __
OpenStack Development Mailing List (not for usage questions)
Unsubscribe: openstack-dev-requ...@lists.openstack.org?subject:unsubscribe
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev


Re: [openstack-dev] [ceilometer] nova api.fault notification isn't collected by ceilometer

2015-02-10 Thread yuntong


On 2015年02月10日 11:34, yuntong wrote:


On 2015年02月10日 05:12, gordon chung wrote:

 In nova api, a nova api.fault notification will be send out when the when 
there
 is en error.
http://git.openstack.org/cgit/openstack/nova/tree/nova/api/openstack/__init__.py#n119
 but i couldn't find where they are  processed  in ceilometer,
 an error notification can be very desired to be collected, do we have plan to
 add this, shall i need a bp to do that ?
there's a patch for review to store error info: 
https://review.openstack.org/#/c/153362/



This looks good,
but how do we do with other priority message like WARN ?

-yuntong

cheers,
/gord/

Yep, that's what i'm looking for, thanks,
another notification from nova that is missed in ceilometer is info 
from nova api:

https://github.com/openstack/nova/blob/master/nova/notifications.py#L64
this notify_decorator will decorate every nova/ec2 rest api and send 
out a notification for each api actions:

https://github.com/openstack/nova/blob/master/nova/utils.py#L526
from which will send out notification like: %s.%s.%s % (module, key, 
method) ,

and no notification plugin in ceilometer to deal with them.
Let me know if i should file a bug for this.
Thanks,

-yuntong




__
OpenStack Development Mailing List (not for usage questions)
Unsubscribe: openstack-dev-requ...@lists.openstack.org?subject:unsubscribe
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev


[openstack-dev] [ceilometer] nova api.fault notification isn't collected by ceilometer

2015-02-09 Thread yuntong

Hi all,
In nova api, a nova api.fault notification will be send out when the 
when there is en error.

http://git.openstack.org/cgit/openstack/nova/tree/nova/api/openstack/__init__.py#n119
but i couldn't find where they are  processed  in ceilometer,
an error notification can be very desired to be collected, do we have 
plan to add this, shall i need a bp to do that ?


-Yuntong


__
OpenStack Development Mailing List (not for usage questions)
Unsubscribe: openstack-dev-requ...@lists.openstack.org?subject:unsubscribe
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev


Re: [openstack-dev] [ceilometer] nova api.fault notification isn't collected by ceilometer

2015-02-09 Thread Julien Danjou
On Mon, Feb 09 2015, yuntong wrote:

 In nova api, a nova api.fault notification will be send out when the when 
 there
 is en error.
 http://git.openstack.org/cgit/openstack/nova/tree/nova/api/openstack/__init__.py#n119
 but i couldn't find where they are  processed  in ceilometer,
 an error notification can be very desired to be collected, do we have plan to
 add this, shall i need a bp to do that ?

Are you talking about:
https://bugs.launchpad.net/ceilometer/+bug/1364708
?

Cheers,
-- 
Julien Danjou
# Free Software hacker
# http://julien.danjou.info


signature.asc
Description: PGP signature
__
OpenStack Development Mailing List (not for usage questions)
Unsubscribe: openstack-dev-requ...@lists.openstack.org?subject:unsubscribe
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev


Re: [openstack-dev] [ceilometer] nova api.fault notification isn't collected by ceilometer

2015-02-09 Thread yuntong


On 2015年02月10日 05:12, gordon chung wrote:

 In nova api, a nova api.fault notification will be send out when the when 
there
 is en error.
http://git.openstack.org/cgit/openstack/nova/tree/nova/api/openstack/__init__.py#n119
 but i couldn't find where they are  processed  in ceilometer,
 an error notification can be very desired to be collected, do we have plan to
 add this, shall i need a bp to do that ?
there's a patch for review to store error info: 
https://review.openstack.org/#/c/153362/


cheers,
/gord/

Yep, that's what i'm looking for, thanks,
another notification from nova that is missed in ceilometer is info from 
nova api:

https://github.com/openstack/nova/blob/master/nova/notifications.py#L64
this notify_decorator will decorate every nova/ec2 rest api and send out 
a notification for each api actions:

https://github.com/openstack/nova/blob/master/nova/utils.py#L526
from which will send out notification like: %s.%s.%s % (module, key, 
method) ,

and no notification plugin in ceilometer to deal with them.
Let me know if i should file a bug for this.
Thanks,

-yuntong


__
OpenStack Development Mailing List (not for usage questions)
Unsubscribe: openstack-dev-requ...@lists.openstack.org?subject:unsubscribe
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev


Re: [openstack-dev] [ceilometer] nova api.fault notification isn't collected by ceilometer

2015-02-09 Thread gordon chung
 In nova api, a nova api.fault notification will be send out when the when 
 there
 is en error.
 http://git.openstack.org/cgit/openstack/nova/tree/nova/api/openstack/__init__.py#n119
 but i couldn't find where they are  processed  in ceilometer,
 an error notification can be very desired to be collected, do we have plan to
 add this, shall i need a bp to do that ?there's a patch for review to store 
 error info: https://review.openstack.org/#/c/153362/
cheers,
gord  __
OpenStack Development Mailing List (not for usage questions)
Unsubscribe: openstack-dev-requ...@lists.openstack.org?subject:unsubscribe
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev