collectd-openstack-plugins/collectd_ceilometer/meters/storage.py

44 lines
1.3 KiB
Python

# -*- coding: utf-8 -*-
# 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.
"""Meter storage"""
from __future__ import unicode_literals
import six
from collectd_ceilometer.meters.base import Meter
from collectd_ceilometer.meters.libvirt import LibvirtMeter
class MeterStorage(object):
"""Meter storage"""
# all plugins
_classes = {
'libvirt': LibvirtMeter,
}
def __init__(self):
self._meters = {}
self._default = Meter()
# fill dict with specialized meters classes
self._meters = {key: meter_class()
for key, meter_class in six.iteritems(self._classes)}
def get(self, plugin):
"""Get meter for the collectd plugin"""
# return specialized meter class for collectd plugin or default Meter
return self._meters.get(plugin, self._default)