The OpenTelemetry Collector, when configured with a Prometheus receiver, provides an integration with Couchbase to ingest metrics. The Collector fetches metrics from the configured path in the Couchbase configuration file and sends it to the Prometheus exporter. From there the metrics are received and processed by the Prometheus receiver and exported to Cloud Observability.
To complete the integration, you will:
You’ve configured the Collector to export metric data to Cloud Observability.
In the Collector configuration file, configure the Prometheus receiver to use the Couchbase endpoint as a scrape target.
1
2
3
4
5
6
7
receivers:
prometheus:
config:
scrape_configs:
- job_name: otel-couchbase
static_configs:
- targets: ['couchbase:8091']
The OpenTelemetry repo’s readme provides additional details about Prometheus receiver configuration.
Once the Couchbase 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 Couchbase metric names.
See the Couchbase documentation for a complete list of emitted metrics.
If needed, click on 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.
For a more complete example that’s ready to run, see the Couchbase integration in Cloud Observability OpenTelemetry Examples.
Updated Dec 1, 2022