ce87356c6589d9cad37fd45fcc94e17ba79c381b
Change the counter_volume field of "fake" samples to get compatibility with
both Python 2 and 3.
In Python 2:
>>> print(str(0.261666666666667))
0.261666666667
In Python 3:
>>> print(str(0.261666666666667))
0.261666666666667
Change-Id: I4beed7aff7e89f891024975b9df9208c987dc87c
Python bindings to the Ceilometer API
This is a client library for Ceilometer built on the Ceilometer API.
It provides a Python API (the ceilometerclient module) and
a command-line tool (ceilometer).
Development takes place via the usual OpenStack processes as outlined in the OpenStack wiki. The master repository is on GitHub.
See release notes and more at http://docs.openstack.org/developer/python-ceilometerclient/.
Description