Skip to content

Latest commit

 

History

History
71 lines (51 loc) · 2.66 KB

File metadata and controls

71 lines (51 loc) · 2.66 KB

EventCounters Instrumentation for OpenTelemetry .NET

NuGet version badge NuGet download count badge

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