From 509504b4a9f600eb72215ba4711ab7d11353c155 Mon Sep 17 00:00:00 2001 From: Josh Lee Date: Tue, 16 Jul 2024 03:19:23 -0400 Subject: [PATCH] [exporter/clickhouse] Update README.md (#33732) Updates metrics example queries to use current spec for `calls` (instead of `calls_total`) **Description:** **Link to tracking Issue:** **Testing:** **Documentation:** --- exporter/clickhouseexporter/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exporter/clickhouseexporter/README.md b/exporter/clickhouseexporter/README.md index 498d2247d228..692c29845559 100644 --- a/exporter/clickhouseexporter/README.md +++ b/exporter/clickhouseexporter/README.md @@ -246,13 +246,13 @@ between Prometheus(OpenMetrics) and OTLP Metrics. - Find a sum metrics with name ```sql select TimeUnix,MetricName,Attributes,Value from otel_metrics_sum -where MetricName='calls_total' limit 100 +where MetricName='calls' limit 100 ``` - Find a sum metrics with name, attribute. ```sql select TimeUnix,MetricName,Attributes,Value from otel_metrics_sum -where MetricName='calls_total' and Attributes['service_name']='featureflagservice' +where MetricName='calls' and Attributes['service_name']='featureflagservice' limit 100 ```