[ERROR][logstash.inputs.metrics ] Failed to create monitoring event {:message=>"For path: events. Map keys: [:pipelines, :reloads]", :error=>"LogStash::Instrument::MetricStore::MetricNotFound"}

I'm following Configuring Centralized Pipeline Management | Logstash Reference [6.5] | Elastic and as I enable following:

# grep -i management docker-compose.override.yml 
                        - XPACK_MANAGEMENT_ELASTICSEARCH_PASSWORD=changeme
                        - XPACK_MANAGEMENT_ELASTICSEARCH_PIPELINE_ID='["pipelineId1"]'
                        - XPACK_MANAGEMENT_ELASTICSEARCH_URL=http://elasticsearch:9200
                        - XPACK_MANAGEMENT_ELASTICSEARCH_USERNAME=elastic
                        - XPACK_MANAGEMENT_ENABLED=true
# 

I start getting following ERROR(s) in my logs:

[ERROR][logstash.inputs.metrics ] Failed to create monitoring event {:message=>"For path: events. Map keys: [:pipelines, :reloads]", :error=>"LogStash::Instrument::MetricStore::MetricNotFound"}

configuration management doesn't work neither((

Please advise.

xpack.management.pipeline.id wasn't properly passed, correct way:

                    - XPACK_MANAGEMENT_PIPELINE_ID=["pipelineId1"]

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.