Fix docstring for dispatcher

Change-Id: Ieb5ba0277e4bee3e9668683a4516eed3d680a14d
This commit is contained in:
Julien Danjou 2016-07-18 18:06:55 +02:00
parent 35a4fc4aeb
commit c03cc0f85b
1 changed files with 5 additions and 6 deletions

View File

@ -25,17 +25,16 @@ LOG = log.getLogger(__name__)
class DatabaseDispatcher(object):
"""Dispatcher class for recording metering data into database.
"""Dispatcher class for recording event data into database.
The dispatcher class which records each meter into a database configured
in panko configuration file.
The dispatcher class which records each event into a database configured
in Ceilometer configuration file.
To enable this dispatcher, the following section needs to be present in
panko.conf file
ceilometer.conf file
[DEFAULT]
meter_dispatchers = database
event_dispatchers = database
event_dispatchers = panko
"""
def __init__(self, conf):