xiang17
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...