Delta Temporality Metrics with the C++ SDK / Collector #2589
Unanswered
Michaelh12304-work
asked this question in
Q&A
Replies: 1 comment
-
@Michaelh12304-work You can set the preferred temporality as part of OTLP grpc/http exporter options - So something like this should work (rough code to give an idea): OtlpGrpcMetricExporterOptions options;
options.aggregation_temporality = PreferredAggregationTemporality::kDelta // or kCumulative or kLowMemory
OtlpGrpcMetricExporter exporter(options); where (as per the specs),
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there a way to produce Metrics with the Delta Temporality using the C++ SDK / Collector??
I see this env var for example: OTEL_EXPORTER_OTLP_METRICS_TEMPORALITY_PREFERENCE which does not seem to be present in the C++ SDK source code.
Some APM providers, in fact a number do not like the non delta kinds of metrics.
We are trying to use the doubleUpDownCounter and the Counter -- which is the one that does not work with Dynatrace.
Thanks
Beta Was this translation helpful? Give feedback.
All reactions