2b3284b3f3
This override is now the default. Change-Id: I98cbf71532b2bc068ab4f34e648a5dad15139f6f
28 lines
740 B
Django/Jinja
28 lines
740 B
Django/Jinja
[DEFAULT]
|
|
log_file = monasca-persister.log
|
|
log_dir = /var/log/kolla/monasca
|
|
debug = {{ monasca_logging_debug }}
|
|
|
|
[influxdb]
|
|
database_name = {{ monasca_influxdb_name }}
|
|
# FIXME(dszumski): This doesn't work with a FQDN so use the VIP directly
|
|
ip_address = {{ kolla_internal_vip_address }}
|
|
port = {{ monasca_influxdb_http_port }}
|
|
|
|
[kafka_alarm_history]
|
|
{% if not monasca_enable_alerting_pipeline | bool %}
|
|
enabled = False
|
|
{% else %}
|
|
uri = {{ monasca_kafka_servers }}
|
|
topic = {{ monasca_alarm_state_transitions_topic }}
|
|
num_processors = 1
|
|
{% endif %}
|
|
|
|
[kafka_metrics]
|
|
uri = {{ monasca_kafka_servers }}
|
|
topic = {{ monasca_metrics_topic }}
|
|
num_processors = {{ monasca_metric_pipeline_threads }}
|
|
|
|
[zookeeper]
|
|
uri = {{ monasca_zookeeper_servers }}
|