OpenTelemetry.Instrumentation.EventCounters 1.13.0-alpha.1

EventCounters Instrumentation for OpenTelemetry .NET

Status
Stability Alpha
Code Owners @hananiel, @mic-max

NuGet version badge NuGet download count badge codecov.io

This is an Instrumentation Library , which republishes EventCounters using OpenTelemetry Metrics API.

Steps to enable OpenTelemetry.Instrumentation.EventCounters

You can view an example project using EventCounters at /examples/event-counters/Examples.EventCounters.

Step 1: Install Package

Add a reference to the OpenTelemetry.Instrumentation.EventCounters package.

dotnet add package OpenTelemetry.Instrumentation.EventCounters --prerelease

Step 2: Enable EventCounters Instrumentation

EventCounters instrumentation should be enabled at application startup using the AddEventCountersInstrumentation extension on the MeterProviderBuilder:

using var meterProvider = Sdk.CreateMeterProviderBuilder()
    .AddEventCountersInstrumentation(options => {
        options.RefreshIntervalSecs = 1;
        options.AddEventSources("MyEventSource");
    })
    .AddPrometheusHttpListener()
    .Build();

Additionally, the above snippet sets up the OpenTelemetry Prometheus exporter, which requires adding the package OpenTelemetry.Exporter.Prometheus to the application.

Step 3: Create EventCounters

Learn about EventCounters in .NET .

EventSource eventSource = new("MyEventSource");

EventCounter eventCounter = new("MyEventCounterName", eventSource);
eventCounter.WriteMetric(0);
eventCounter.WriteMetric(1000);

PollingCounter pollingCounter = new("MyPollingCounterName", eventSource, () => new Random().NextDouble());

Notes

The metrics will only be available after EventCounterIntervalSec seconds. Before that nothing will be exported, if anything is present at the Prometheus metrics endpoint it is from a prior execution. This is more evident when using longer polling intervals.

References

No packages depend on OpenTelemetry.Instrumentation.EventCounters.

For detailed changes see: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/7f261123461fe32c49ab419e25b346600e69a872/src/OpenTelemetry.Instrumentation.EventCounters/CHANGELOG.md.

.NET Standard 2.0

Version Downloads Last updated
1.13.0-alpha.1 1 10/25/2025
1.5.1-alpha.1 16 04/16/2025
1.0.0-alpha.2 6 06/08/2025
1.0.0-alpha.1 5 06/08/2025
0.1.0-alpha.1 5 06/08/2025