gnocchi/tools/measures_injector.py
Hanxi 73ed97906b remove default=None for config options
In the cfg module default=None is set as the default value.

Change-Id: If7edb70aff5c7b50acca0fc513250731ec15f0c6
Closes-bug: #1323975
2016-08-25 18:31:28 +08:00

61 lines
1.8 KiB
Python
Executable File

#!/usr/bin/env python
# Copyright (c) 2016 Red Hat
#
# 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 datetime
import random
from concurrent import futures
from oslo_config import cfg
import six
from gnocchi import indexer
from gnocchi import service
from gnocchi import storage
from gnocchi import utils
def injector():
conf = cfg.ConfigOpts()
conf.register_cli_opts([
cfg.IntOpt("metrics"),
cfg.IntOpt("batch-of-measures", default=1000),
cfg.IntOpt("measures-per-batch", default=10),
])
conf = service.prepare_service(conf=conf)
index = indexer.get_driver(conf)
index.connect()
s = storage.get_driver(conf)
metrics = index.list_metrics()
if conf.metrics:
metrics = metrics[:conf.metrics]
def todo(metric):
for _ in six.moves.range(conf.batch_of_measures):
measures = [
storage.Measure(utils.to_timestamp(datetime.datetime.now()),
random.random())
for __ in six.moves.range(conf.measures_per_batch)]
s.add_measures(metric, measures)
with futures.ThreadPoolExecutor(max_workers=len(metrics)) as executor:
# We use 'list' to iterate all threads here to raise the first
# exception now, not much choice
list(executor.map(todo, metrics))
if __name__ == '__main__':
injector()