Skip to content
Snippets Groups Projects
Commit 47136af5 authored by Doug Szumski's avatar Doug Szumski
Browse files

Update log metrics config for Logstash downgrade

The format for the Logstash Kafka output plugin worker count is
integer in Logstash 2 and string in Logstash 5. Since we have downgraded
Logstash we need to switch formats here.

Change-Id: I98113dda05bbb44410916c27d7d3bcd59a034a98
Partially-Implements: blueprint monasca-roles
parent 0992c6b5
No related branches found
No related tags found
No related merge requests found
...@@ -71,6 +71,6 @@ output { ...@@ -71,6 +71,6 @@ output {
bootstrap_servers => "{{ monasca_kafka_servers }}" bootstrap_servers => "{{ monasca_kafka_servers }}"
topic_id => "{{ monasca_metrics_topic }}" topic_id => "{{ monasca_metrics_topic }}"
client_id => "log_metrics_{{ ansible_hostname }}" client_id => "log_metrics_{{ ansible_hostname }}"
workers => "{{ monasca_log_pipeline_threads }}" workers => {{ monasca_log_pipeline_threads|int }}
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment