This direct publisher allows the pipeline to write samples directly to the configured database without first needing to go through the collector. This is useful for some testing scenarios where we want to limit the number of required running services. Implements: blueprint declarative-http-tests Change-Id: I996cda43609695b7645b9fcf9554d3e928cb92a3
56 lines
1.9 KiB
Python
56 lines
1.9 KiB
Python
#
|
|
# Copyright 2015 Red Hat
|
|
#
|
|
# Author: Chris Dent <chdent@redhat.com>
|
|
#
|
|
# 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)
|