AIAgentStartedEvent

data class AIAgentStartedEvent(val agentId: String, val runId: String, val strategyName: String, val eventId: String = AIAgentStartedEvent::class.simpleName!!) : DefinedFeatureEvent(source)

Represents an event triggered when an AI agent starts executing a strategy.

This event provides details about the agent's strategy, making it useful for monitoring, debugging, and tracking the lifecycle of AI agents within the system.

Constructors

Link copied to clipboard
constructor(agentId: String, runId: String, strategyName: String, eventId: String = AIAgentStartedEvent::class.simpleName!!)

Properties

Link copied to clipboard

The unique identifier of the AI agent;

Link copied to clipboard
open override val eventId: String
Link copied to clipboard
open override val messageType: FeatureMessage.Type

Specifies the type of the feature message for this event.

Link copied to clipboard

The unique identifier of the AI agen run;

Link copied to clipboard

The name of the strategy that the AI agent has started executing.

Link copied to clipboard
open override val timestamp: Long

The timestamp, represented as the number of milliseconds since the Unix epoch, indicating when the feature event was created.