MCPcopy
hub / github.com/AgentOps-AI/agentops / ISpanAttributes

Interface ISpanAttributes

app/dashboard/types/ISpan.ts:125–156  ·  view source on GitHub ↗

* Span attributes

Source from the content-addressed store, hash-verified

123 * Span attributes
124 */
125interface ISpanAttributes {
126 span?: {
127 kind?: string;
128 [key: string]: any;
129 };
130 gen_ai?: IGenAIAttributes;
131 llm?: ILLMAttributes;
132 agent?: IAgentAttributes;
133 tool?: IToolAttributes;
134 arg?: {
135 [key: string]: any;
136 };
137 result?: string;
138 user?: {
139 id?: string;
140 [key: string]: any;
141 };
142 connection?: {
143 type?: string;
144 [key: string]: any;
145 };
146 database?: {
147 type?: string;
148 [key: string]: any;
149 };
150 error?: {
151 message?: string;
152 type?: string;
153 [key: string]: any;
154 };
155 [key: string]: any;
156}
157
158/**
159 * Resource attributes

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…