6a7633c62a
Make all the source and tests HACKING compliant and enable tox -e hacking on by default. Relative directory checks not enabled (yet) Change-Id: I8803f67c49b4d16caebe76ae690092ae5c9a6dd3
102 lines
3.5 KiB
Python
Executable File
102 lines
3.5 KiB
Python
Executable File
#!/usr/bin/env python
|
|
# -*- encoding: utf-8 -*-
|
|
#
|
|
# Copyright © 2012 Julien Danjou
|
|
#
|
|
# Author: Julien Danjou <julien@danjou.info>
|
|
#
|
|
# 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.
|
|
|
|
"""Command line tool for creating counter for Ceilometer.
|
|
"""
|
|
|
|
import logging
|
|
import sys
|
|
|
|
from oslo.config import cfg
|
|
from stevedore import dispatch
|
|
|
|
from ceilometer import counter
|
|
from ceilometer import pipeline
|
|
from ceilometer import service
|
|
from ceilometer.openstack.common import timeutils
|
|
from ceilometer.openstack.common import context
|
|
|
|
|
|
cfg.CONF.register_cli_opts([
|
|
cfg.StrOpt('counter-name',
|
|
short='n',
|
|
help='counter name',
|
|
required=True),
|
|
cfg.StrOpt('counter-type',
|
|
short='y',
|
|
help='counter type (gauge, delta, cumulative)',
|
|
default='gauge',
|
|
required=True),
|
|
cfg.StrOpt('counter-unit',
|
|
short='U',
|
|
help='counter unit',
|
|
default=None),
|
|
cfg.IntOpt('counter-volume',
|
|
short='l',
|
|
help='counter volume value',
|
|
default=1),
|
|
cfg.StrOpt('counter-resource',
|
|
short='r',
|
|
help='counter resource id',
|
|
required=True),
|
|
cfg.StrOpt('counter-user',
|
|
short='u',
|
|
help='counter user id'),
|
|
cfg.StrOpt('counter-project',
|
|
short='p',
|
|
help='counter project id'),
|
|
cfg.StrOpt('counter-timestamp',
|
|
short='i',
|
|
help='counter timestamp',
|
|
default=timeutils.utcnow().isoformat()),
|
|
cfg.StrOpt('counter-metadata',
|
|
short='m',
|
|
help='counter metadata'),
|
|
])
|
|
|
|
service.prepare_service(sys.argv)
|
|
|
|
# Set up logging to use the console
|
|
console = logging.StreamHandler(sys.stderr)
|
|
console.setLevel(logging.DEBUG)
|
|
formatter = logging.Formatter('%(message)s')
|
|
console.setFormatter(formatter)
|
|
root_logger = logging.getLogger('')
|
|
root_logger.addHandler(console)
|
|
root_logger.setLevel(logging.DEBUG)
|
|
|
|
publish_manager = dispatch.NameDispatchExtensionManager(
|
|
namespace=pipeline.PUBLISHER_NAMESPACE,
|
|
check_func=lambda x: True,
|
|
invoke_on_load=True)
|
|
pipeline_manager = pipeline.setup_pipeline(publish_manager)
|
|
|
|
with pipeline_manager.publisher(context.get_admin_context(),
|
|
cfg.CONF.counter_source) as p:
|
|
p([counter.Counter(name=cfg.CONF.counter_name,
|
|
type=cfg.CONF.counter_type,
|
|
unit=cfg.CONF.counter_unit,
|
|
volume=cfg.CONF.counter_volume,
|
|
user_id=cfg.CONF.counter_user,
|
|
project_id=cfg.CONF.counter_project,
|
|
resource_id=cfg.CONF.counter_resource,
|
|
timestamp=cfg.CONF.counter_timestamp,
|
|
resource_metadata=cfg.CONF.counter_metadata
|
|
and eval(cfg.CONF.counter_metadata))])
|