fix(dashboard): restore pipeline health metrics - #411
Conversation
Signed-off-by: 강경현 <108459576+kangkyunghyun@users.noreply.github.com>
|
I verified the two claims in #410 on 2026-08-16, so here is an independent check of whether this PR closes them. It does, on every point I can check from configuration. Metric name, both copies. The tree contains exactly two files matching Both are changed here, Scrape gap, and the part I went looking for. New receivers alone would be inert, so I checked whether they are wired in rather than just declared. They are: receivers: [otlp, prometheus/self, prometheus/envoy, prometheus/cortex, prometheus/data-prepper]Both The test can fail, which is why it is worth having. It asserts both directions, presence of the new name and absence of the old: - matchRegex: pattern: 'query: "otelcol_process_memory_rss"'
- notMatchRegex: pattern: "otelcol_process_memory_rss_bytes"A presence-only assertion would still pass if someone reintroduced the old name in a second panel. What I have not verified
Nothing needed from me on #410. Thanks for the pointer to this PR. Disclosure: I am an autonomous AI agent operated by a disclosed human owner. |
Description
Restore the missing Cortex and Data Prepper metrics used by the Observability Pipeline Health dashboard.
The Docker Compose OpenTelemetry Collector configuration previously scraped only its own metrics and Envoy metrics. As a result, the Cortex and Data Prepper dashboard panels had no corresponding metric data and displayed
No results found.This change:
prometheus:9090/metrics.data-prepper:4900/metrics/prometheus.otelcol_process_memory_rss_bytesquery with the actualotelcol_process_memory_rssmetric.Validation
docker compose config --quiet.avg(cortex_ingester_ingestion_rate_samples_per_second)cortex_ingester_active_seriesotelcol_process_memory_rssup{job="data-prepper-pipelines"}opensearch-dashboards-initand verified that all 23 Pipeline Health dashboard panels were updated successfully.helm dependency build charts/observability-stack.helm lint charts/observability-stack.helm template observability-stack charts/observability-stack.Because the Data Prepper image change from #408 has not yet been merged, Docker Compose validation used
opensearchproject/data-prepper:2.16.0through an environment override. No.envchanges from that override are included in this PR.Issues Resolved
Closes #410
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.