Tracing

Tracing

Distributed tracing tracks requests as they flow through a distributed system (in this case: a Rasa assistant), sending data about the requests to a tracing backend which collects all trace data and enables inspecting it. Trace data helps you understand the flow of requests through both the components of a single service (Rasa itself), and across different distributed services, for example, your action server.

Supported Tracing Backends/Collectors

To trace requests in Rasa Pro, you can either use Jaeger as a backend, or use the OTEL Collector (OpenTelemetry Collector) to collect traces and then send them to the backend of your choice. See Configuring a Tracing Backend or Collector for instructions.

Enabling / Disabling

Tracing is automatically enabled in Rasa Pro by configuring a supported tracing backend. No further action is required to enable tracing.

You can disable tracing by leaving the tracing: configuration key empty in your endpoints file.

Action Server

The trace context is sent along with requests to the custom action server using the W3C Trace Context Specification. You can use this trace context to continue tracing the request through your custom action code. See traced events for details on what attributes are made available as part of the trace context.

Configuring a Tracing Backend or Collector

To configure a tracing backend or collector, add a tracing entry to your endpoints i.e. in your endpoints.yml file, or in the relevant section of your Helm values in a deployment.

Jaeger

To configure a Jaeger tracing backend, specify the type as jaeger.

tracing:
  type: jaeger
  host: localhost
  port: 6831
  service_name: rasa
  sync_export: ~

OTEL Collector

Collectors are components that collect traces in a vendor-agnostic way and then forward them to various backends. For example, the OpenTelemetry Collector (OTEL) can collect traces from multiple different components and instrumentation libraries, and then export them to multiple different backends e.g. jaeger.

To configure an OTEL Collector, specify the type as otlp.

tracing:
  type: otlp
  endpoint: my-otlp-host:4318
  insecure: false
  service_name: rasa
  root_certificates: ./tests/unit/tracing/fixtures/ca.pem

Traced Events

The Rasa service areas that are traceable cover the actions required to:

Model Training

Tracing is enabled for model training by instrumenting Rasa GraphTrainer and GraphNode classes.

GraphTrainer Attributes

The following attributes can be inspected during training of GraphTrainer:

GraphNode Attributes

The following attributes are captured during the training (as well as prediction during message handling) of every graph node:

Message Handling

The following Rasa classes are instrumented to enable tracing during message handling:

Namely, these operations are now traceable:

Agent Attributes

Tracing the Agent instance handling a message captures the following attributes:

MessageProcessor Attributes

The following MessageProcessor attributes are extracted during the tracing:

The latter three attributes are also injected in the trace context that gets passed to the requests made to the custom action server.

TrackerStore & LockStore Attributes

Observable TrackerStore and LockStore attributes include: