Skip to content

Commit 3428383

Browse files
cachedoutycombinator
authored andcommitted
Fix incorrect hash id
Fixes #10561
1 parent fbd1908 commit 3428383

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

logstash-core/lib/logstash/java_pipeline.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ def start_workers
217217
config_metric.gauge(:dead_letter_queue_enabled, dlq_enabled?)
218218
config_metric.gauge(:dead_letter_queue_path, dlq_writer.get_path.to_absolute_path.to_s) if dlq_enabled?
219219
config_metric.gauge(:ephemeral_id, ephemeral_id)
220-
config_metric.gauge(:hash, hash)
220+
config_metric.gauge(:hash, lir.unique_hash)
221221

222222
@logger.info("Starting pipeline", default_logging_keys(
223223
"pipeline.workers" => pipeline_workers,

0 commit comments

Comments
 (0)