Skip to content
Closed
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
30 changes: 30 additions & 0 deletions modules/distr-tracing-otel-config-collector.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,36 @@ The Jaeger receiver ingests data in Jaeger formats.
<4> The Jaeger Thrift Binary endpoint. If omitted, the default `+0.0.0.0:6832+` is used.
<5> The TLS server side configuration. See the OTLP receiver configuration section for more details.

[id="prometheus-receiver_{context}"]
==== Prometheus Receiver

The Prometheus receiver scrapes metrics endpoints..

* Support level: link:https://access.redhat.com/support/offerings/techpreview[Technology Preview]
* Supported signals: metrics

.OpenTelemetry Collector custom resource with an enabled Prometheus receiver
[source,yaml]
----
config: |
receivers:
prometheus:
config:
scrape_configs: <1>
- job_name: 'my-app' <2>
scrape_interval: 5s <3>
static_configs:
- targets: ['my-app.example.svc.cluster.local:8888'] <4>
service:
pipelines:
metrics:
receivers: [prometheus]
----
<1> Scrape configurations using Prometheus format.
<2> Prometheus job name.
<3> Interval to scrape the metrics data.
<4> Targets where the metrics are exposed. This example scrapes the metrics from an application called "my-app" in the "example" Project.

[id="zipkin-receiver_{context}"]
==== Zipkin Receiver

Expand Down