xiang17

Results 25 comments of xiang17

I also had a question on how to evaluate whether it's worth the preprocessing time. There needs to be a balance. If we preprocess `O(n)` just for optimizing a couple...

@cijothomas Can you remove the runtime label? It doesn't belong to the runtime instrumentation library now.

This is the same issue as https://github.com/open-telemetry/opentelemetry-dotnet-contrib/issues/1617. You can configure the Prometheus exporter to disable the `_total` suffix with this option: `AddPrometheusExporter(o => o.DisableTotalNameSuffixForCounters = true)`. The option is included...

Hi, please see [Process Instrumentation](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.Process) for process-related metrics, like CPU time metrics and process memory. Runtime instrumentation gives metrics about .NET runtime behavior. * Thread Pool Workers Count: we already...

> @vishweshbankwar I created an issue in the [spec](https://github.com/w3c/baggage/issues/137) I think the spec says to remove **that (baggage) entry** if conditions are met, rather than dropping the entire baggage. >...

You can configure the Prometheus exporter to disable the `_total` suffix with this option: `AddPrometheusExporter(o => o.DisableTotalNameSuffixForCounters = true)` The PR is here https://github.com/open-telemetry/opentelemetry-dotnet/pull/5305 and is included in releases starting...

@Abrynos I couldn't reproduce your issue. Can you create a minimal reproduce app? I can get the expected metric: ``` # TYPE process_runtime_dotnet_jit_il_compiled_size_bytes counter # UNIT process_runtime_dotnet_jit_il_compiled_size_bytes bytes # HELP...

@JanVargovsky please take a look at the [above solution](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/issues/1617#issuecomment-2030815683) with `DisableTotalNameSuffixForCounters`. It should have fixed the issue.

Hi @joaoluizalbuquerque, how are you calling the APIs and how is it shown in stdout? (With any exporter?) Can you provide a minimal reproduce app to showcase your issue?

Can you provide a minimal reproduce app for this?