~ubuntu-branches/ubuntu/wily/aodh/wily

« back to all changes in this revision

Viewing changes to setup.cfg

  • Committer: Package Import Robot
  • Author(s): Thomas Goirand
  • Date: 2015-09-10 17:50:46 UTC
  • Revision ID: package-import@ubuntu.com-20150910175046-jb6cn5eo3s27um2p
Tags: upstream-1.0.0
ImportĀ upstreamĀ versionĀ 1.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
[metadata]
 
2
name = aodh
 
3
summary = OpenStack Telemetry Alarming
 
4
description-file =
 
5
    README.rst
 
6
author = OpenStack
 
7
author-email = openstack-dev@lists.openstack.org
 
8
home-page = http://www.openstack.org/
 
9
classifier =
 
10
    Environment :: OpenStack
 
11
    Intended Audience :: Information Technology
 
12
    Intended Audience :: System Administrators
 
13
    License :: OSI Approved :: Apache Software License
 
14
    Operating System :: POSIX :: Linux
 
15
    Programming Language :: Python
 
16
    Programming Language :: Python :: 2
 
17
    Programming Language :: Python :: 2.7
 
18
    Topic :: System :: Monitoring
 
19
 
 
20
[global]
 
21
setup-hooks =
 
22
    pbr.hooks.setup_hook
 
23
 
 
24
[files]
 
25
packages =
 
26
    aodh
 
27
 
 
28
[entry_points]
 
29
aodh.storage =
 
30
    log = aodh.storage.impl_log:Connection
 
31
    mongodb = aodh.storage.impl_mongodb:Connection
 
32
    mysql = aodh.storage.impl_sqlalchemy:Connection
 
33
    mysql+pymysql = aodh.storage.impl_sqlalchemy:Connection
 
34
    postgresql = aodh.storage.impl_sqlalchemy:Connection
 
35
    sqlite = aodh.storage.impl_sqlalchemy:Connection
 
36
    hbase = aodh.storage.impl_hbase:Connection
 
37
 
 
38
aodh.alarm.rule =
 
39
    threshold = aodh.api.controllers.v2.alarm_rules.threshold:AlarmThresholdRule
 
40
    combination = aodh.api.controllers.v2.alarm_rules.combination:AlarmCombinationRule
 
41
    gnocchi_resources_threshold = aodh.api.controllers.v2.alarm_rules.gnocchi:MetricOfResourceRule
 
42
    gnocchi_aggregation_by_metrics_threshold = aodh.api.controllers.v2.alarm_rules.gnocchi:AggregationMetricsByIdLookupRule
 
43
    gnocchi_aggregation_by_resources_threshold = aodh.api.controllers.v2.alarm_rules.gnocchi:AggregationMetricByResourcesLookupRule
 
44
    event = aodh.api.controllers.v2.alarm_rules.event:AlarmEventRule
 
45
 
 
46
aodh.evaluator =
 
47
    threshold = aodh.evaluator.threshold:ThresholdEvaluator
 
48
    combination = aodh.evaluator.combination:CombinationEvaluator
 
49
    gnocchi_resources_threshold = aodh.evaluator.gnocchi:GnocchiThresholdEvaluator
 
50
    gnocchi_aggregation_by_metrics_threshold = aodh.evaluator.gnocchi:GnocchiThresholdEvaluator
 
51
    gnocchi_aggregation_by_resources_threshold = aodh.evaluator.gnocchi:GnocchiThresholdEvaluator
 
52
 
 
53
aodh.notifier =
 
54
    log = aodh.notifier.log:LogAlarmNotifier
 
55
    test = aodh.notifier.test:TestAlarmNotifier
 
56
    http = aodh.notifier.rest:RestAlarmNotifier
 
57
    https = aodh.notifier.rest:RestAlarmNotifier
 
58
    trust+http = aodh.notifier.trust:TrustRestAlarmNotifier
 
59
    trust+https = aodh.notifier.trust:TrustRestAlarmNotifier
 
60
 
 
61
console_scripts =
 
62
    aodh-api = aodh.cmd.api:main
 
63
    aodh-dbsync = aodh.cmd.eventlet.storage:dbsync
 
64
    aodh-expirer = aodh.cmd.eventlet.storage:expirer
 
65
    aodh-evaluator = aodh.cmd.eventlet.alarm:evaluator
 
66
    aodh-notifier = aodh.cmd.eventlet.alarm:notifier
 
67
    aodh-listener = aodh.cmd.eventlet.alarm:listener
 
68
 
 
69
oslo.config.opts =
 
70
    aodh = aodh.opts:list_opts
 
71
 
 
72
[build_sphinx]
 
73
all_files = 1
 
74
build-dir = doc/build
 
75
source-dir = doc/source
 
76
 
 
77
[pbr]
 
78
warnerrors = true
 
79
autodoc_index_modules = true
 
80
autodoc_exclude_modules = aodh.storage.sqlalchemy.alembic.*
 
81
 
 
82
[extract_messages]
 
83
keywords = _ gettext ngettext l_ lazy_gettext
 
84
mapping_file = babel.cfg
 
85
output_file = aodh/locale/aodh.pot
 
86
 
 
87
[compile_catalog]
 
88
directory = aodh/locale
 
89
domain = aodh
 
90
 
 
91
[update_catalog]
 
92
domain = aodh
 
93
output_dir = aodh/locale
 
94
input_file = aodh/locale/aodh.pot