-
Notifications
You must be signed in to change notification settings - Fork 764
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
Instrument tags not attached #5478
Comments
hi @YarinOmesi! can you describe the change you would like to see in terms of the specification (instead of in terms of .Net)? cc @open-telemetry/dotnet-approvers |
It looks like some miscommunicated! I did ask to open a new issue to track this, but I meant to open one on the otel .net repo! Transferring issue to otel .net repo. |
Tags can be added to a meter, instrument, and be provided when adding a value. The meter overload with tags: Meter ctor Right now, only tags specified when providing a value are used. The OP's app is setup to use Prometheus exporter. In my case I don't see meter and instrument tags being exported in OTLP. |
Meter Tags are supported : #5089 Not sure if you are using PrometheusExporter? Maybe its missing in Prometheus exporter |
I see meter tags are added to the scope. Never mind about them. Instrument tags are still an issue. It doesn't look like their is an attributes field on metrics in the OTLP spec. Is there a plan to add them to the spec, or should they be included with |
Instrument Tags is a .NET only invention, not backed by a spec. This issue is opened to find a way to add support for it. Most likely, this will be supported in OTel .NET itself. (no ETA). |
Is this a duplicate/related to: #5836 ? |
I belive not, this issue is about instruments tags and not about meter tags |
Correct. |
What are you trying to achieve?
System.Diagnostics.DiagnosticSource v8.0 introduced the ability to instantiate an insrument with tags. for example Counter with tags.
Using System.Diagnostics.DiagnosticSource v8.0, when creating and exporting a counter with tags, I expect tags declared in an instrument will be attached and be exported (in prometheus).
Example Code:
What did you expect to see?
I expect tags declared in an instrument will be attached and be exported (in prometheus).
Actual output, without the instrument tags
Additional context.
Discussed In #5313
Relevant docs:
https://github.com/open-telemetry/opentelemetry-dotnet/tree/main/docs/metrics#metrics-enrichment
The text was updated successfully, but these errors were encountered: