gnocchi/gnocchi/storage/incoming/_carbonara.py

77 lines
2.5 KiB
Python

# -*- encoding: utf-8 -*-
#
# Copyright © 2016 Red Hat, Inc.
# Copyright © 2014-2015 eNovance
#
# 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.
import itertools
import struct
from oslo_log import log
import pandas
import six.moves
from gnocchi.storage import incoming
LOG = log.getLogger(__name__)
class CarbonaraBasedStorage(incoming.StorageDriver):
MEASURE_PREFIX = "measure"
_MEASURE_SERIAL_FORMAT = "Qd"
_MEASURE_SERIAL_LEN = struct.calcsize(_MEASURE_SERIAL_FORMAT)
def _unserialize_measures(self, measure_id, data):
nb_measures = len(data) // self._MEASURE_SERIAL_LEN
try:
measures = struct.unpack(
"<" + self._MEASURE_SERIAL_FORMAT * nb_measures, data)
except struct.error:
LOG.error(
"Unable to decode measure %s, possible data corruption",
measure_id)
raise
return six.moves.zip(
pandas.to_datetime(measures[::2], unit='ns'),
itertools.islice(measures, 1, len(measures), 2))
def add_measures(self, metric, measures):
measures = list(measures)
data = struct.pack(
"<" + self._MEASURE_SERIAL_FORMAT * len(measures),
*list(itertools.chain.from_iterable(measures)))
self._store_new_measures(metric, data)
@staticmethod
def _store_new_measures(metric, data):
raise NotImplementedError
def measures_report(self, details=True):
metrics, measures, full_details = self._build_report(details)
report = {'summary': {'metrics': metrics, 'measures': measures}}
if full_details is not None:
report['details'] = full_details
return report
@staticmethod
def _build_report(details):
raise NotImplementedError
@staticmethod
def delete_unprocessed_measures_for_metric_id(metric_id):
raise NotImplementedError
@staticmethod
def process_measure_for_metric(metric):
raise NotImplementedError