From f7cc8073a3ac5f7eb6d386b03a154b61c595d53f Mon Sep 17 00:00:00 2001 From: Thanh Le Date: Wed, 20 Nov 2024 18:34:43 +0100 Subject: [PATCH] docs: Fix curl request example for prometheus exporter --- docs/sdk/prometheus-exporter.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sdk/prometheus-exporter.md b/docs/sdk/prometheus-exporter.md index cb873dff7..cdc1a867c 100644 --- a/docs/sdk/prometheus-exporter.md +++ b/docs/sdk/prometheus-exporter.md @@ -3,7 +3,7 @@ The exporter exports metrics in a prometheus-compatible format, so Prometheus can scrape metrics from the HTTP server. You can either allow exporter to launch its own server or add Prometheus routes to the existing one. -An example of output (e.g. `curl http://localhost:9464/metrics`): +An example of output (e.g. `curl -H "Accept:text/plain" http://localhost:9464/metrics`): ```scala mdoc:passthrough import cats.effect.IO import cats.effect.unsafe.implicits.global