Create custom traces and metrics
The automatic instrumentation configures a TracerProvider
and a
MeterProvider
so that you can add your own manual instrumentation. By using
both automatic and manual instrumentation, you can better instrument the logic
and functionality of your applications, clients, and frameworks.
Traces
To create your custom traces manually, follow these steps:
Add the
System.Diagnostics.DiagnosticSource
dependency to your project:<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="8.0.0" />
Create an
ActivitySource
instance:private static readonly ActivitySource RegisteredActivity = new ActivitySource("Examples.ManualInstrumentations.Registered");
Create an
Activity
. Optionally, set tags:using (var activity = RegisteredActivity.StartActivity("Main")) { activity?.SetTag("foo", "bar1"); // your logic for Main activity }
Register your
ActivitySource
in OpenTelemetry.AutoInstrumentation by setting theOTEL_DOTNET_AUTO_TRACES_ADDITIONAL_SOURCES
environmental variable. You can set the value to eitherExamples.ManualInstrumentations.Registered
or toExamples.ManualInstrumentations.*
, which registers the entire prefix.
Note
AnActivity
created for
NonRegistered.ManualInstrumentations
ActivitySource
is not handled by the
OpenTelemetry Automatic Instrumentation.Metrics
To create your custom metrics manually, follow these steps:
Add the
System.Diagnostics.DiagnosticSource
dependency to your project:<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="8.0.0" />
Create a
Meter
instance:using var meter = new Meter("Examples.Service", "1.0");
Create an
Instrument
:var successCounter = meter.CreateCounter<long>("srv.successes.count", description: "Number of successful responses");
Update the
Instrument
value. Optionally, set tags:successCounter.Add(1, new KeyValuePair<string, object?>("tagName", "tagValue"));
Register your
Meter
with OpenTelemetry.AutoInstrumentation by setting theOTEL_DOTNET_AUTO_METRICS_ADDITIONAL_SOURCES
environment variable:OTEL_DOTNET_AUTO_METRICS_ADDITIONAL_SOURCES=Examples.Service
You can set the value to either
Examples.Service
or toExamples.*
, which registers the entire prefix.
Further reading
[i18n] feedback_title
[i18n] feedback_question
Thank you. Your feedback is appreciated!
Please let us know how we can improve this page. Your feedback is appreciated!