Tracking Agents
Use the @track_agent()
decorator to tag your agents
All Events are automatically associated with the agent that originated them. Agents are given a name which is what you will see in the dashboard.
This event is labeled with the name of the Agent that originated it
The example below tags the agent MyAgent with name SomeCustomName
.
python
trackagent.name
is optional.
If omitted, agent name defaults to the name of the class (e.g. MyAgent).
If an event does not originate from a tracked agent, agent name defaults to “Default Agent”.