Questions tagged [ceilometer]

The Ceilometer project aims to deliver a unique point of contact for billing systems to acquire all of the measurements they need to establish customer billing, across all current OpenStack core components with work underway to support future OpenStack components.

Source

What is the purpose of the project and vision for it? Provide efficient collection of metering data, in terms of CPU and network costs. Allow deployers to integrate with the metering system directly or by replacing components. Data may be collected by monitoring notifications sent from existing services or by polling the infrastructure. Allow deployers to configure the type of data collected to meet their operating requirements. The data collected by the metering system is made visible to some users through a REST API. The metering messages are signed and non-repudiable.

61 questions
5
votes
0 answers

response gnocchi measures empty

i want to use gnocchi Stein version but i have problem with it, because all measures is empty and i don't know how to solve it. in the blew i show the configuration and command lists: in the gnocchi.conf: [storage] coordination_url =…
3
votes
1 answer

OpenStack get vm cpu_util with Stein version

In stein version, ceilometer remove polling for cpu_util. Follow this doc: https://docs.openstack.org/ceilometer/stein/admin/telemetry-measurements.html#openstack-compute The measurements only cpu ( CPU time used) and vcpus (Number of virtual CPUs…
dommgifer
  • 71
  • 1
  • 1
  • 7
3
votes
0 answers

Ceilometer HTTP 404 Not Found

I am using pike release of openstack and ceilometer version 2.9.0 and keystone v3. $ceilometer meter-list gives HTTP 404 Not Found error $gnocchi metric list --> HTTP 401 $openstack metric list ---> lists the meters (works) . However in yaml…
scorp
  • 41
  • 2
3
votes
2 answers

convert ceilometer output to python dataframe

I'm a little new to Python and openstack ceilometer. I'm reading ceilometer data using the following code: import ceilometerclient.client cclient = ceilometerclient.client.get_client(2, os_username="Ceilometeradmin", os_password="blahblah",…
tezzaaa
  • 459
  • 1
  • 6
  • 17
3
votes
2 answers

publish() takes at least 3 arguments (3 given)

I am working with ceilometer python API and publishing data to pubnub. not sure what is meant by this error. This is the part of code that is causing the problem i think, def init_Data(data, channel): cpu_sample = cclient.samples.list(meter_name…
Imo
  • 1,455
  • 4
  • 28
  • 53
2
votes
0 answers

ceilometer not upgrade due error 401 authentication

I installed openstack using devstack in one node. And this is my local.conf…
2
votes
1 answer

why does the frequency of my Gnocchi measurements not match the set granularity

Im running openstack and am trying to get my gnocchi meters to come through more frequently so that I can run a scaling demo without lots of 5 minute lags. In Gnocchi I have changed the Archive-policy to be a custom policy with granularity set to 30…
2
votes
0 answers

enabling store_events doesn't capture floatingip metering

I set 'store_events' to true under [notifications] in ceilometer.conf file for capturing floating ip metering. But on creating a floating ip, it is not captured by ceilometer. When I am checking ceilometer meter-list, no meters are available for…
Leon
  • 21
  • 3
2
votes
0 answers

Django Ceilometer get resource list and resource type

I am using Openstack Mitaka. In Django I am trying to get all the resources for tenants. (This is ok) After that I need to understand the resource type. For example if it is an instance or floating ip, etc. def sync_resources(): …
Fuat Ulugay
  • 521
  • 2
  • 14
2
votes
1 answer

How to configure cloudkitty in devstack

I need some documentation or guide which demonstrates me the installation of cloudkitty in my openstack Devstack. I have tried installing the same using the following guide: https://wiki.openstack.org/wiki/CloudKitty/Devstack But It doesn't seems to…
Murali
  • 1,084
  • 1
  • 11
  • 28
2
votes
3 answers

Devstack Services

I have installed ceilometer services in a devstack environnement by enabling them in local.conf" enable_service ceilometer-acompute ceilometer-acentral ceilometer-anotification$ enable_service…
2
votes
0 answers

How to get instance usage data for billing from Ceilometer client?

I am creating billing module for openstack. I am trying to get instances running for particular tenant during last 30 days. I tried using ceilometer client for accessing this. I tried client.samples("instance").list(). However, it gives me guaged…
SaurabhJinturkar
  • 554
  • 7
  • 20
2
votes
0 answers

Custom ceilometer metrics

I am trying to add a custom metric to ceilometer via API and have success in adding new metric and new data, but I have fail when try to see this new metric in dashboard. The comand I gave use: Get a token: curl -i -X POST…
1
vote
1 answer

Trying to do telemetrics on OpenStack using Ceilometer in Python

As a project I need to do some telemetrics with Ceilometer on OpenStack. I was given an old piece of code as a reference how the newer version should look like. Using what little knowledge of Python and OpenStack I have and spending hours on…
GreedySage
  • 11
  • 1
1
vote
0 answers

How to install Ceilometer and Gnocchi on different servers?

I have an Openstack environment with 3 controller servers HA with Pacemaker. I'm trying to install Ceilometer on one controller, due to the high load of gnocchi I want to install gnocchi on a separate server. first, I wonder if there is a way to…
1
2 3 4 5