46b68015f3
Switch to the Confluent Kafka client in all remaining Python based Monasca services. This should allow us to later un-pin the Kafka messaging version for Monasca. Change-Id: I42bc78ffe304ba21c448c2e08b025e93a70ddb44
29 lines
817 B
Django/Jinja
29 lines
817 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]
|
|
# NOTE(dszumski): This will become the default in Victoria and can then
|
|
# be removed: https://review.opendev.org/#/c/740966
|
|
legacy_kafka_client_enabled = False
|
|
|
|
[kafka_alarm_history]
|
|
uri = {{ monasca_kafka_servers }}
|
|
topic = {{ monasca_alarm_state_transitions_topic }}
|
|
num_processors = 1
|
|
|
|
[kafka_metrics]
|
|
uri = {{ monasca_kafka_servers }}
|
|
topic = {{ monasca_metrics_topic }}
|
|
num_processors = {{ monasca_metric_pipeline_threads }}
|
|
|
|
[zookeeper]
|
|
uri = {{ monasca_zookeeper_servers }}
|