Metric dimensions for tool metrics

interface ToolMetricDimensions {
    toolName: string;
    agentName?: string;
    environment?: string;
    status: "error" | "success";
}

Properties

toolName: string
agentName?: string
environment?: string
status: "error" | "success"