'OpenTelemetry Service Point not showing in Prometheus
I installed OpenTelemetry operator in Kubernets. Installed it using helm.
helm install my-opentelemetry-collector open-telemetry/opentelemetry-collector
Below is the ConfigMap of collector
prometheus:
config:
scrape_configs:
- job_name: opentelemetry-collector
scrape_interval: 10s
static_configs:
- targets:
- ${MY_POD_IP}:8888
How can I add OpenTelemetry collector target to prometheus
Solution 1:[1]
You need to configure also prometheus exporter in your metrics pipeline.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Jan Garaj |
