2.9 KiB
Manually instrument a .NET application
The automatic instrumentation provides a base you can build on by adding 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.DiagnosticSourcedependency to your project:<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="9.0.0" /> -
Create an
ActivitySourceinstance: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
ActivitySourcein OpenTelemetry.AutoInstrumentation by setting theOTEL_DOTNET_AUTO_TRACES_ADDITIONAL_SOURCESenvironmental variable. You can set the value to eitherExamples.ManualInstrumentations.Registeredor toExamples.ManualInstrumentations.*, which registers the entire prefix.
You can see a sample console application with manual instrumentation here.
Note that an
Activitycreated forNonRegistered.ManualInstrumentationsActivitySourceis not handled by the OpenTelemetry Automatic Instrumentation.
Metrics
To create your custom metrics manually, follow these steps:
-
Add the
System.Diagnostics.DiagnosticSourcedependency to your project:<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="9.0.0" /> -
Create a
Meterinstance: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
Instrumentvalue. Optionally, set tags:successCounter.Add(1, new KeyValuePair<string, object?>("tagName", "tagValue")); -
Register your
Meterwith OpenTelemetry.AutoInstrumentation by setting theOTEL_DOTNET_AUTO_METRICS_ADDITIONAL_SOURCESenvironment variable:OTEL_DOTNET_AUTO_METRICS_ADDITIONAL_SOURCES=Examples.ServiceYou can set the value to either
Examples.Serviceor toExamples.*, which registers the entire prefix.
You can see a sample console application with manual metric instrumentation here.