The OpenTelemetry Collector, when configured with a Prometheus receiver, provides an integration with Fluentd to scrape Prometheus metrics. The Collector uses the Prometheus Receiver to fetch metrics from the Fluentd metrics endpoint. From there, the metrics are processed and exported to Cloud Observability.
To complete the integration, perform the following steps:
Fluentd requires configuration to expose metrics in Prometheus endpoint. See the Fluentd example for an integration. And here’s the Fluentd documentation for the reference.
In the Collector configuration file, specify the Fluentd Prometheus plugin endpoint as a scrape target.
1
2
3
4
5
6
7
receivers:
prometheus:
config:
scrape_configs:
- job_name: otel-fluentd
static_configs:
- targets: [fluentd:24224]
The OpenTelemetry repository readme provides additional details about Prometheus receiver configuration.
Complete information about the Prometheus scrape configuration can be found in the Prometheus documentation.
After the Fluentd receiver is configured, enable it by adding it to one or more pipelines as described in the Collector configuration documentation.
You can validate that metrics are reporting to Cloud Observability on the Metrics details page in Settings.
In Cloud Observability, click Settings > Metric details.
Search for Fluentd metric names.
See the Fluentd documentation for a detailed description of provided metrics.
If needed, select the metric to edit the description and how the units are displayed in Cloud Observability.
Use the Cloud Observability Terraform Provider to create a dashboard for the metrics.
Updated May 3, 2023