We used opentelemetry-cpp v1.8.1 (metrics for now) previously on a project. Everything worked fine regarding metadata present in influxdb. Metric data that came from UpDownCounter had _field tag "counter" which was according to our expectations. Recently we witched to 1.11.0. I did not make any changes in the code, but now each metric has _field tag that shows "gauge" even if original metricInstrument is of UpDownCounter type. Does anybody know what can be the reason of such a behavior? Is there a possibility to fix this? Thanks in advance!
I was trying to debug otel library locally, made it to the place where json is formed in OtlpHttpClient::createSession(...). Observing that string does not help to find a place where metricData contains something like "counter" or "gauge".
For something called an UpDowncounter, only the
gauge
type is appropriate. Compare the following definitions from the OpenMetrics spec:I think the relevant change is this line from the 1.10 changelog: