* Span attributes
| 123 | * Span attributes |
| 124 | */ |
| 125 | interface 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 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…