-
Notifications
You must be signed in to change notification settings - Fork 440
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support Summary metrics #3058
Comments
|
Fair enough. I read the OTLP spec and thought it was a valid use case for apps that already exist out there which want to integrate with other OpenTelemetry components and that generate and need the percentiles that Summaries define for which either is not possible to migrate to Histograms, or Histograms don't cover exactly their use case. Anyway, as soon as our changes are published I'll post a link to it in the issue in case someone needs smthg similar. Thanks |
Hello everyone.
In our project we integrate
opentelemetry-cpp
to export our telemetry data using theOTLP
exporters the library provides. Some of the metrics we export fit better asSummary
but the library doesn't support it. I understand the reason beingSummaries
are declaredLegacy
in the spec.I've added the support myself in the
opentelemetry-cpp
version we use in our project but would like to upstream the changes. So I was wondering whether you'd be open for a PR that allows users to exportSummary
metrics (it doesn't cover things like instrument creation, etc).Thanks
The text was updated successfully, but these errors were encountered: