0

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

Container-Man
  • 434
  • 1
  • 6
  • 17

1 Answers1

0

You need to configure also prometheus exporter in your metrics pipeline.

Jan Garaj
  • 25,598
  • 3
  • 38
  • 59