https://github.com/shuttle/shuttle.recall.opentelemetry
OpenTelemetry instrumentation for Shuttle.Recall implementations.
https://github.com/shuttle/shuttle.recall.opentelemetry
Last synced: about 1 month ago
JSON representation
OpenTelemetry instrumentation for Shuttle.Recall implementations.
- Host: GitHub
- URL: https://github.com/shuttle/shuttle.recall.opentelemetry
- Owner: Shuttle
- License: bsd-3-clause
- Created: 2022-10-30T12:41:31.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-08-05T15:31:48.000Z (over 1 year ago)
- Last Synced: 2025-06-09T01:56:16.764Z (9 months ago)
- Language: C#
- Size: 37.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Shuttle.Recall.OpenTelemetry
```
PM> Install-Package Shuttle.Recall.OpenTelemetry
```
OpenTelemetry instrumentation for Shuttle.Recall implementations.
## Configuration
```c#
services.AddRecallInstrumentation(builder =>
{
// default values
builder.Options.Enabled = true;
builder.Options.IncludeSerializedMessage = true;
// or bind from configuration
configuration
.GetSection(RecallOpenTelemetryOptions.SectionName)
.Bind(builder.Options);
});
## Options
| Option | Default | Description |
| --- | --- | --- |
| `Enabled` | `true` | Indicates whether to perform instrumentation. |
| `IncludeSerializedMessage` | `true` | If 'true', includes the serialized message as attribute `SerializedMessage` in the trace. |