fuel-plugin-lma-collector/deployment_scripts/puppet/modules/lma_collector/files/collectd/collectd_fake.py

74 lines
2.1 KiB
Python

#!/usr/bin/python
# Copyright 2015 Mirantis, Inc.
#
# 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 logging
import os
log_level = logging.INFO
if os.getenv('COLLECTD_DEBUG', '') == '1':
log_level = logging.DEBUG
logging.basicConfig(level=log_level)
class Values(object):
def __init__(self, type=None, values=None, plugin_instance=None,
type_instance=None, plugin=None, host=None, time=None,
meta=None, interval=None):
self._type = type
self._values = values
self._plugin_instance = plugin_instance
self._type_instance = type_instance
self._plugin = plugin
self._host = host
self._time = time
self._meta = meta
self._interval = interval
def dispatch(self, type=None, values=None, plugin_instance=None,
type_instance=None, plugin=None, host=None, time=None,
meta=None, interval=None):
info("plugin={plugin} plugin_instance={plugin_instance} "
"type={type} type_instance={type_instance} "
"values={values} meta={meta}".format(
plugin=plugin or self._plugin,
plugin_instance=plugin_instance or self._plugin_instance,
type=type or self._type,
type_instance=type_instance or self._type_instance,
values=values or self._values,
meta=meta or self._meta,
))
def error(msg):
logging.error(msg)
def warning(msg):
logging.warning(msg)
def notice(msg):
logging.notice(msg)
def info(msg):
logging.info(msg)
def debug(msg):
logging.debug(msg)