Following commits accomplishes several things: * unit tests run with ostestr * coverage calculation * documentation generated using OS approach & theme * bandit linting Change-Id: I6c3b48805c237f0ad95220b90ff66b045c7478fb
23 lines
657 B
ReStructuredText
23 lines
657 B
ReStructuredText
Introduction
|
|
============
|
|
|
|
A global :class:`~statsd.MonascaStatsd` instance that is easily shared
|
|
across an application's modules. Initialize this once in your application's
|
|
set-up code and then other modules can import and use it without further
|
|
configuration.
|
|
|
|
>>> from monascastatsd import monascastatsd
|
|
>>> monascastatsd.connect(host='localhost', port=8125)
|
|
|
|
Source
|
|
======
|
|
|
|
The Monasca-Statsd source is freely available on Github. Check it out `here
|
|
<https://github.com/openstack/monasca-statsd>`_.
|
|
|
|
Get in Touch
|
|
============
|
|
|
|
If you'd like to suggest a feature or report a bug,
|
|
please add an issue `here <https://bugs.launchpad.net/monasca>`_.
|