Skip to content

PVO11Y-4876: Enable prometheus exporter/pipeline for Konflux opentelemetry in staging #7508

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 11, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ config:
realm: "us1"
api_url: "https://api.us1.signalfx.com"
access_token: ${env:SIGNALFX_API_TOKEN}
prometheus:
endpoint: 0.0.0.0:8889
extensions:
# The health_check extension is mandatory for this chart.
# Without the health_check extension the collector will fail the readiness and liveliness probes.
Expand Down Expand Up @@ -61,7 +63,23 @@ config:
- attributes/stage
receivers:
- otlp
metrics: null
metrics:
receivers:
- otlp
processors:
- memory_limiter
- batch
exporters:
- prometheus
telemetry:
metrics:
level: basic
readers:
- pull:
exporter: prometheus
host: 0.0.0.0
port: 8888

# Configuration for ports
ports:
otlp:
Expand Down