Telemetry
Last updated
Was this helpful?
Last updated
Was this helpful?
Starting in version 9.2.1 Brighter now supports Open Telemetry Tracing
The OpenTelemetry SDK can be configured to listen to Activities inside of Brighter for more information
The below code will
Enable OpenTelemetry tracing
Set the service name to "ProducerService"
Set OpenTelemetry traving to listen to all Brighter and Microsoft sources
Export the telemetry tracts to Jaeger
The activity sources that Brighter emits from are:
Paramore.Brighter - Traces started in the Command Processor will be given this (Including Outbox Sweeper)
Paramore.Brighter.ServiceActivator - Traces Started in the Service Activator
Please note that Brighter will honor existing spans, i.e. When using ASPNet a Request will start a trace, it is for this reason that the sample above also includes "Microsft.*" as Bighter will participate in an active trace.
At this time Brighter records the following events
Add message to outbox
When a message is added to the outbox
Get outstanding messages from the outbox
During an implicit clear when retrieving undispatched messages from the outbox
Dispatching message
When a message is being dispatched to a message transport
Bulk dispatching messages
When a batch of messages are being dispathced to a message transport
This distributed traces shows a message that is produced from an ASP.Net request and the consumed by Service Activator