@camunda8/orchestration-cluster-api
    Preparing search index...

    Type Alias AgentInstanceMetrics

    Aggregated metrics for an agent instance across all model calls.

    type AgentInstanceMetrics = {
        inputTokens: number;
        modelCalls: number;
        outputTokens: number;
        toolCalls: number;
    }
    Index

    Properties

    inputTokens: number

    Total input tokens consumed across all model calls.

    modelCalls: number

    Total number of LLM calls made.

    outputTokens: number

    Total output tokens produced across all model calls.

    toolCalls: number

    Total number of tool calls made.