a5f8d66d6e
Change-Id: Ia567c3aeb7f8516d0834dc8e4c3852e43a687043
54 lines
1.8 KiB
Python
54 lines
1.8 KiB
Python
#
|
|
# Copyright 2015 Red Hat
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
|
|
from oslo.config import cfg
|
|
from oslo.utils import timeutils
|
|
|
|
from ceilometer.dispatcher import database
|
|
from ceilometer import publisher
|
|
from ceilometer.publisher import utils
|
|
|
|
|
|
class DirectPublisher(publisher.PublisherBase):
|
|
"""A publisher that allows saving directly from the pipeline.
|
|
|
|
Samples are saved to the currently configured database by hitching
|
|
a ride on the DatabaseDispatcher. This is useful where it is desirable
|
|
to limit the number of external services that are required.
|
|
"""
|
|
|
|
def __init__(self, parsed_url):
|
|
super(DirectPublisher, self).__init__(parsed_url)
|
|
self.meter_conn = database.DatabaseDispatcher(cfg.CONF).meter_conn
|
|
|
|
def publish_samples(self, context, samples):
|
|
if not isinstance(samples, list):
|
|
samples = [samples]
|
|
|
|
# Transform the Sample objects into a list of dicts
|
|
meters = [
|
|
utils.meter_message_from_counter(
|
|
sample,
|
|
cfg.CONF.publisher.metering_secret)
|
|
for sample in samples
|
|
]
|
|
|
|
for meter in meters:
|
|
if meter.get('timestamp'):
|
|
ts = timeutils.parse_isotime(meter['timestamp'])
|
|
meter['timestamp'] = timeutils.normalize_time(ts)
|
|
self.meter_conn.record_metering_data(meter)
|