@mastra/otel-exporter 1.0.0-beta.1 → 1.0.0-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +50 -0
- package/README.md +47 -3
- package/dist/gen-ai-messages.d.ts +26 -0
- package/dist/gen-ai-messages.d.ts.map +1 -0
- package/dist/gen-ai-semantics.d.ts +22 -0
- package/dist/gen-ai-semantics.d.ts.map +1 -0
- package/dist/index.cjs +437 -368
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +434 -367
- package/dist/index.js.map +1 -1
- package/dist/span-converter.d.ts +27 -29
- package/dist/span-converter.d.ts.map +1 -1
- package/dist/tracing.d.ts +2 -2
- package/dist/tracing.d.ts.map +1 -1
- package/package.json +8 -8
- package/dist/mastra-span.d.ts +0 -38
- package/dist/mastra-span.d.ts.map +0 -1
package/dist/index.js
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SpanType, TracingEventType } from '@mastra/core/observability';
|
|
2
2
|
import { BaseExporter } from '@mastra/observability';
|
|
3
|
-
import {
|
|
4
|
-
import { resourceFromAttributes } from '@opentelemetry/resources';
|
|
3
|
+
import { TraceFlags, SpanKind, SpanStatusCode, diag, DiagConsoleLogger, DiagLogLevel } from '@opentelemetry/api';
|
|
5
4
|
import { BatchSpanProcessor } from '@opentelemetry/sdk-trace-base';
|
|
5
|
+
import { readFileSync } from 'fs';
|
|
6
|
+
import { fileURLToPath } from 'url';
|
|
7
|
+
import { resourceFromAttributes } from '@opentelemetry/resources';
|
|
6
8
|
import { ATTR_TELEMETRY_SDK_LANGUAGE, ATTR_TELEMETRY_SDK_VERSION, ATTR_TELEMETRY_SDK_NAME, ATTR_SERVICE_VERSION, ATTR_SERVICE_NAME } from '@opentelemetry/semantic-conventions';
|
|
9
|
+
import { ATTR_GEN_AI_OPERATION_NAME, ATTR_GEN_AI_INPUT_MESSAGES, ATTR_GEN_AI_OUTPUT_MESSAGES, ATTR_GEN_AI_REQUEST_MODEL, ATTR_GEN_AI_PROVIDER_NAME, ATTR_GEN_AI_USAGE_INPUT_TOKENS, ATTR_GEN_AI_USAGE_OUTPUT_TOKENS, ATTR_GEN_AI_REQUEST_TEMPERATURE, ATTR_GEN_AI_REQUEST_MAX_TOKENS, ATTR_GEN_AI_REQUEST_TOP_P, ATTR_GEN_AI_REQUEST_TOP_K, ATTR_GEN_AI_REQUEST_PRESENCE_PENALTY, ATTR_GEN_AI_REQUEST_FREQUENCY_PENALTY, ATTR_GEN_AI_REQUEST_STOP_SEQUENCES, ATTR_GEN_AI_REQUEST_SEED, ATTR_GEN_AI_RESPONSE_FINISH_REASONS, ATTR_GEN_AI_RESPONSE_MODEL, ATTR_GEN_AI_RESPONSE_ID, ATTR_SERVER_ADDRESS, ATTR_SERVER_PORT, ATTR_GEN_AI_TOOL_NAME, ATTR_GEN_AI_TOOL_DESCRIPTION, ATTR_GEN_AI_AGENT_ID, ATTR_GEN_AI_AGENT_NAME, ATTR_GEN_AI_CONVERSATION_ID, ATTR_GEN_AI_SYSTEM_INSTRUCTIONS, ATTR_ERROR_TYPE, ATTR_ERROR_MESSAGE } from '@opentelemetry/semantic-conventions/incubating';
|
|
7
10
|
|
|
8
11
|
// src/tracing.ts
|
|
9
12
|
|
|
@@ -203,399 +206,473 @@ function resolveCustomConfig(config) {
|
|
|
203
206
|
protocol: config.protocol || "http/json"
|
|
204
207
|
};
|
|
205
208
|
}
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
ended;
|
|
220
|
-
resource;
|
|
221
|
-
instrumentationLibrary;
|
|
222
|
-
instrumentationScope;
|
|
223
|
-
droppedAttributesCount = 0;
|
|
224
|
-
droppedEventsCount = 0;
|
|
225
|
-
droppedLinksCount = 0;
|
|
226
|
-
constructor(span, attributes, kind, parentSpanId, resource, instrumentationLibrary) {
|
|
227
|
-
this.name = span.name;
|
|
228
|
-
this.kind = kind;
|
|
229
|
-
this.attributes = attributes;
|
|
230
|
-
this.parentSpanId = parentSpanId;
|
|
231
|
-
this.links = [];
|
|
232
|
-
this.events = [];
|
|
233
|
-
this.startTime = this.dateToHrTime(span.startTime);
|
|
234
|
-
this.endTime = span.endTime ? this.dateToHrTime(span.endTime) : this.startTime;
|
|
235
|
-
this.ended = !!span.endTime;
|
|
236
|
-
if (span.endTime) {
|
|
237
|
-
const durationMs = span.endTime.getTime() - span.startTime.getTime();
|
|
238
|
-
this.duration = [Math.floor(durationMs / 1e3), durationMs % 1e3 * 1e6];
|
|
239
|
-
} else {
|
|
240
|
-
this.duration = [0, 0];
|
|
209
|
+
|
|
210
|
+
// src/gen-ai-messages.ts
|
|
211
|
+
var isMastraMessagePart = (p) => {
|
|
212
|
+
return typeof p === "object" && p != null && "type" in p && (p.type === "text" || p.type === "tool-call" || p.type === "tool-result") && (p.type === "text" && "text" in p || p.type === "tool-call" && "toolCallId" in p && "toolName" in p && "input" in p || p.type === "tool-result" && "toolCallId" in p && "toolName" in p && "output" in p);
|
|
213
|
+
};
|
|
214
|
+
var isMastraMessage = (m) => {
|
|
215
|
+
return typeof m === "object" && m != null && "role" in m && "content" in m && (typeof m.content === "string" || Array.isArray(m.content) && m.content.every(isMastraMessagePart));
|
|
216
|
+
};
|
|
217
|
+
var convertMastraMessagesToGenAIMessages = (inputOutputString) => {
|
|
218
|
+
try {
|
|
219
|
+
const parsedIO = JSON.parse(inputOutputString);
|
|
220
|
+
if (typeof parsedIO !== "object" || parsedIO == null || !("messages" in parsedIO) && !("text" in parsedIO)) {
|
|
221
|
+
return inputOutputString;
|
|
241
222
|
}
|
|
242
|
-
if (
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
attributes: {
|
|
250
|
-
"exception.message": span.errorInfo.message,
|
|
251
|
-
"exception.type": "Error",
|
|
252
|
-
...span.errorInfo.details?.stack && {
|
|
253
|
-
"exception.stacktrace": span.errorInfo.details.stack
|
|
254
|
-
}
|
|
255
|
-
},
|
|
256
|
-
time: this.startTime,
|
|
257
|
-
droppedAttributesCount: 0
|
|
258
|
-
});
|
|
259
|
-
} else if (span.endTime) {
|
|
260
|
-
this.status = { code: SpanStatusCode.OK };
|
|
261
|
-
} else {
|
|
262
|
-
this.status = { code: SpanStatusCode.UNSET };
|
|
263
|
-
}
|
|
264
|
-
if (span.isEvent) {
|
|
265
|
-
this.events.push({
|
|
266
|
-
name: "instant_event",
|
|
267
|
-
attributes: {},
|
|
268
|
-
time: this.startTime,
|
|
269
|
-
droppedAttributesCount: 0
|
|
270
|
-
});
|
|
223
|
+
if ("text" in parsedIO) {
|
|
224
|
+
return JSON.stringify([
|
|
225
|
+
{
|
|
226
|
+
role: "assistant",
|
|
227
|
+
parts: [{ type: "text", content: parsedIO.text }]
|
|
228
|
+
}
|
|
229
|
+
]);
|
|
271
230
|
}
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
231
|
+
if (Array.isArray(parsedIO.messages)) {
|
|
232
|
+
return JSON.stringify(
|
|
233
|
+
parsedIO.messages.map((m) => {
|
|
234
|
+
if (!isMastraMessage(m)) {
|
|
235
|
+
return m;
|
|
236
|
+
}
|
|
237
|
+
const role = m.role;
|
|
238
|
+
let parts = [];
|
|
239
|
+
if (Array.isArray(m.content)) {
|
|
240
|
+
parts = m.content.map((c) => {
|
|
241
|
+
switch (c.type) {
|
|
242
|
+
case "text":
|
|
243
|
+
return {
|
|
244
|
+
type: "text",
|
|
245
|
+
content: c.text
|
|
246
|
+
};
|
|
247
|
+
case "tool-call":
|
|
248
|
+
return {
|
|
249
|
+
type: "tool_call",
|
|
250
|
+
id: c.toolCallId,
|
|
251
|
+
name: c.toolName,
|
|
252
|
+
arguments: JSON.stringify(c.input)
|
|
253
|
+
};
|
|
254
|
+
case "tool-result":
|
|
255
|
+
return {
|
|
256
|
+
type: "tool_call_response",
|
|
257
|
+
id: c.toolCallId,
|
|
258
|
+
name: c.toolName,
|
|
259
|
+
response: JSON.stringify(c.output.value)
|
|
260
|
+
};
|
|
261
|
+
default:
|
|
262
|
+
return c;
|
|
263
|
+
}
|
|
264
|
+
});
|
|
265
|
+
} else {
|
|
266
|
+
parts = [
|
|
267
|
+
{
|
|
268
|
+
type: "text",
|
|
269
|
+
content: m.content
|
|
270
|
+
}
|
|
271
|
+
];
|
|
272
|
+
}
|
|
273
|
+
return {
|
|
274
|
+
role,
|
|
275
|
+
parts
|
|
276
|
+
};
|
|
277
|
+
})
|
|
278
|
+
);
|
|
285
279
|
}
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
version: "1.0.0"
|
|
290
|
-
};
|
|
291
|
-
this.instrumentationScope = this.instrumentationLibrary;
|
|
292
|
-
}
|
|
293
|
-
/**
|
|
294
|
-
* Convert JavaScript Date to hrtime format
|
|
295
|
-
*/
|
|
296
|
-
dateToHrTime(date) {
|
|
297
|
-
const ms = date.getTime();
|
|
298
|
-
const seconds = Math.floor(ms / 1e3);
|
|
299
|
-
const nanoseconds = ms % 1e3 * 1e6;
|
|
300
|
-
return [seconds, nanoseconds];
|
|
280
|
+
return inputOutputString;
|
|
281
|
+
} catch {
|
|
282
|
+
return inputOutputString;
|
|
301
283
|
}
|
|
302
284
|
};
|
|
303
285
|
|
|
304
|
-
// src/
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
constructor(resource) {
|
|
319
|
-
this.resource = resource;
|
|
320
|
-
this.instrumentationLibrary = {
|
|
321
|
-
name: "@mastra/otel",
|
|
322
|
-
version: "1.0.0"
|
|
323
|
-
};
|
|
286
|
+
// src/gen-ai-semantics.ts
|
|
287
|
+
function getOperationName(span) {
|
|
288
|
+
switch (span.type) {
|
|
289
|
+
case SpanType.MODEL_GENERATION:
|
|
290
|
+
return "chat";
|
|
291
|
+
case SpanType.TOOL_CALL:
|
|
292
|
+
case SpanType.MCP_TOOL_CALL:
|
|
293
|
+
return "execute_tool";
|
|
294
|
+
case SpanType.AGENT_RUN:
|
|
295
|
+
return "invoke_agent";
|
|
296
|
+
case SpanType.WORKFLOW_RUN:
|
|
297
|
+
return "invoke_workflow";
|
|
298
|
+
default:
|
|
299
|
+
return span.type.toLowerCase();
|
|
324
300
|
}
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
301
|
+
}
|
|
302
|
+
function sanitizeSpanName(name) {
|
|
303
|
+
return name.replace(/[^\p{L}\p{N}._ -]/gu, "");
|
|
304
|
+
}
|
|
305
|
+
function getSpanIdentifier(span) {
|
|
306
|
+
switch (span.type) {
|
|
307
|
+
case SpanType.MODEL_GENERATION: {
|
|
308
|
+
const attrs = span.attributes;
|
|
309
|
+
return attrs?.model ?? "unknown";
|
|
310
|
+
}
|
|
311
|
+
case SpanType.TOOL_CALL:
|
|
312
|
+
case SpanType.MCP_TOOL_CALL: {
|
|
313
|
+
const attrs = span.attributes;
|
|
314
|
+
return attrs?.toolId ?? "unknown";
|
|
315
|
+
}
|
|
316
|
+
case SpanType.AGENT_RUN: {
|
|
317
|
+
const attrs = span.attributes;
|
|
318
|
+
return attrs?.agentName ?? attrs?.agentId ?? "unknown";
|
|
319
|
+
}
|
|
320
|
+
case SpanType.WORKFLOW_RUN: {
|
|
321
|
+
const attrs = span.attributes;
|
|
322
|
+
return attrs?.workflowId ?? "unknown";
|
|
323
|
+
}
|
|
324
|
+
default:
|
|
325
|
+
return null;
|
|
343
326
|
}
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
327
|
+
}
|
|
328
|
+
function getSpanName(span) {
|
|
329
|
+
const identifier = getSpanIdentifier(span);
|
|
330
|
+
if (identifier) {
|
|
331
|
+
const operation = getOperationName(span);
|
|
332
|
+
return `${operation} ${identifier}`;
|
|
333
|
+
}
|
|
334
|
+
return sanitizeSpanName(span.name);
|
|
335
|
+
}
|
|
336
|
+
function getAttributes(span) {
|
|
337
|
+
const attributes = {};
|
|
338
|
+
const spanType = span.type.toLowerCase();
|
|
339
|
+
attributes[ATTR_GEN_AI_OPERATION_NAME] = getOperationName(span);
|
|
340
|
+
attributes["mastra.span.type"] = span.type;
|
|
341
|
+
if (span.input !== void 0) {
|
|
342
|
+
const inputStr = typeof span.input === "string" ? span.input : JSON.stringify(span.input);
|
|
343
|
+
if (span.type === SpanType.MODEL_GENERATION) {
|
|
344
|
+
attributes[ATTR_GEN_AI_INPUT_MESSAGES] = convertMastraMessagesToGenAIMessages(inputStr);
|
|
345
|
+
} else if (span.type === SpanType.TOOL_CALL || span.type === SpanType.MCP_TOOL_CALL) {
|
|
346
|
+
attributes["gen_ai.tool.call.arguments"] = inputStr;
|
|
347
|
+
} else {
|
|
348
|
+
attributes[`mastra.${spanType}.input`] = inputStr;
|
|
352
349
|
}
|
|
353
|
-
return SPAN_KIND_MAPPING[Span.type] || SpanKind.INTERNAL;
|
|
354
350
|
}
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
const model = attrs?.model || "unknown";
|
|
364
|
-
return `${operation} ${model}`;
|
|
365
|
-
}
|
|
366
|
-
case SpanType.TOOL_CALL:
|
|
367
|
-
case SpanType.MCP_TOOL_CALL: {
|
|
368
|
-
const toolAttrs = Span.attributes;
|
|
369
|
-
const toolName = toolAttrs?.toolId || "unknown";
|
|
370
|
-
return `tool.execute ${toolName}`;
|
|
371
|
-
}
|
|
372
|
-
case SpanType.AGENT_RUN: {
|
|
373
|
-
const agentAttrs = Span.attributes;
|
|
374
|
-
const agentId = agentAttrs?.agentId || "unknown";
|
|
375
|
-
return `agent.${agentId}`;
|
|
376
|
-
}
|
|
377
|
-
case SpanType.WORKFLOW_RUN: {
|
|
378
|
-
const workflowAttrs = Span.attributes;
|
|
379
|
-
const workflowId = workflowAttrs?.workflowId || "unknown";
|
|
380
|
-
return `workflow.${workflowId}`;
|
|
381
|
-
}
|
|
382
|
-
case SpanType.WORKFLOW_STEP:
|
|
383
|
-
return Span.name;
|
|
384
|
-
default:
|
|
385
|
-
return Span.name;
|
|
351
|
+
if (span.output !== void 0) {
|
|
352
|
+
const outputStr = typeof span.output === "string" ? span.output : JSON.stringify(span.output);
|
|
353
|
+
if (span.type === SpanType.MODEL_GENERATION) {
|
|
354
|
+
attributes[ATTR_GEN_AI_OUTPUT_MESSAGES] = convertMastraMessagesToGenAIMessages(outputStr);
|
|
355
|
+
} else if (span.type === SpanType.TOOL_CALL || span.type === SpanType.MCP_TOOL_CALL) {
|
|
356
|
+
attributes["gen_ai.tool.call.result"] = outputStr;
|
|
357
|
+
} else {
|
|
358
|
+
attributes[`mastra.${spanType}.output`] = outputStr;
|
|
386
359
|
}
|
|
387
360
|
}
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
buildAttributes(Span) {
|
|
393
|
-
const attributes = {};
|
|
394
|
-
attributes["gen_ai.operation.name"] = this.getOperationName(Span);
|
|
395
|
-
attributes["span.kind"] = this.getSpanKindString(Span);
|
|
396
|
-
attributes["mastra.span.type"] = Span.type;
|
|
397
|
-
attributes["mastra.trace_id"] = Span.traceId;
|
|
398
|
-
attributes["mastra.span_id"] = Span.id;
|
|
399
|
-
if (Span.parentSpanId) {
|
|
400
|
-
attributes["mastra.parent_span_id"] = Span.parentSpanId;
|
|
401
|
-
}
|
|
402
|
-
if (Span.input !== void 0) {
|
|
403
|
-
const inputStr = typeof Span.input === "string" ? Span.input : JSON.stringify(Span.input);
|
|
404
|
-
attributes["input"] = inputStr;
|
|
405
|
-
if (Span.type === SpanType.MODEL_GENERATION) {
|
|
406
|
-
attributes["gen_ai.prompt"] = inputStr;
|
|
407
|
-
} else if (Span.type === SpanType.TOOL_CALL || Span.type === SpanType.MCP_TOOL_CALL) {
|
|
408
|
-
attributes["gen_ai.tool.input"] = inputStr;
|
|
409
|
-
}
|
|
361
|
+
if (span.type === SpanType.MODEL_GENERATION && span.attributes) {
|
|
362
|
+
const modelAttrs = span.attributes;
|
|
363
|
+
if (modelAttrs.model) {
|
|
364
|
+
attributes[ATTR_GEN_AI_REQUEST_MODEL] = modelAttrs.model;
|
|
410
365
|
}
|
|
411
|
-
if (
|
|
412
|
-
|
|
413
|
-
attributes["output"] = outputStr;
|
|
414
|
-
if (Span.type === SpanType.MODEL_GENERATION) {
|
|
415
|
-
attributes["gen_ai.completion"] = outputStr;
|
|
416
|
-
} else if (Span.type === SpanType.TOOL_CALL || Span.type === SpanType.MCP_TOOL_CALL) {
|
|
417
|
-
attributes["gen_ai.tool.output"] = outputStr;
|
|
418
|
-
}
|
|
366
|
+
if (modelAttrs.provider) {
|
|
367
|
+
attributes[ATTR_GEN_AI_PROVIDER_NAME] = normalizeProvider(modelAttrs.provider);
|
|
419
368
|
}
|
|
420
|
-
if (
|
|
421
|
-
const
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
if (modelAttrs.provider) {
|
|
426
|
-
attributes["gen_ai.system"] = modelAttrs.provider;
|
|
369
|
+
if (modelAttrs.usage) {
|
|
370
|
+
const inputTokens = modelAttrs.usage.inputTokens ?? modelAttrs.usage.promptTokens;
|
|
371
|
+
const outputTokens = modelAttrs.usage.outputTokens ?? modelAttrs.usage.completionTokens;
|
|
372
|
+
if (inputTokens !== void 0) {
|
|
373
|
+
attributes[ATTR_GEN_AI_USAGE_INPUT_TOKENS] = inputTokens;
|
|
427
374
|
}
|
|
428
|
-
if (
|
|
429
|
-
|
|
430
|
-
const outputTokens = modelAttrs.usage.outputTokens ?? modelAttrs.usage.completionTokens;
|
|
431
|
-
if (inputTokens !== void 0) {
|
|
432
|
-
attributes["gen_ai.usage.input_tokens"] = inputTokens;
|
|
433
|
-
}
|
|
434
|
-
if (outputTokens !== void 0) {
|
|
435
|
-
attributes["gen_ai.usage.output_tokens"] = outputTokens;
|
|
436
|
-
}
|
|
437
|
-
if (modelAttrs.usage.totalTokens !== void 0) {
|
|
438
|
-
attributes["gen_ai.usage.total_tokens"] = modelAttrs.usage.totalTokens;
|
|
439
|
-
}
|
|
440
|
-
if (modelAttrs.usage.reasoningTokens !== void 0) {
|
|
441
|
-
attributes["gen_ai.usage.reasoning_tokens"] = modelAttrs.usage.reasoningTokens;
|
|
442
|
-
}
|
|
443
|
-
if (modelAttrs.usage.cachedInputTokens !== void 0) {
|
|
444
|
-
attributes["gen_ai.usage.cached_input_tokens"] = modelAttrs.usage.cachedInputTokens;
|
|
445
|
-
}
|
|
375
|
+
if (outputTokens !== void 0) {
|
|
376
|
+
attributes[ATTR_GEN_AI_USAGE_OUTPUT_TOKENS] = outputTokens;
|
|
446
377
|
}
|
|
447
|
-
if (modelAttrs.
|
|
448
|
-
|
|
449
|
-
attributes["gen_ai.request.temperature"] = modelAttrs.parameters.temperature;
|
|
450
|
-
}
|
|
451
|
-
if (modelAttrs.parameters.maxOutputTokens !== void 0) {
|
|
452
|
-
attributes["gen_ai.request.max_tokens"] = modelAttrs.parameters.maxOutputTokens;
|
|
453
|
-
}
|
|
454
|
-
if (modelAttrs.parameters.topP !== void 0) {
|
|
455
|
-
attributes["gen_ai.request.top_p"] = modelAttrs.parameters.topP;
|
|
456
|
-
}
|
|
457
|
-
if (modelAttrs.parameters.topK !== void 0) {
|
|
458
|
-
attributes["gen_ai.request.top_k"] = modelAttrs.parameters.topK;
|
|
459
|
-
}
|
|
460
|
-
if (modelAttrs.parameters.presencePenalty !== void 0) {
|
|
461
|
-
attributes["gen_ai.request.presence_penalty"] = modelAttrs.parameters.presencePenalty;
|
|
462
|
-
}
|
|
463
|
-
if (modelAttrs.parameters.frequencyPenalty !== void 0) {
|
|
464
|
-
attributes["gen_ai.request.frequency_penalty"] = modelAttrs.parameters.frequencyPenalty;
|
|
465
|
-
}
|
|
466
|
-
if (modelAttrs.parameters.stopSequences) {
|
|
467
|
-
attributes["gen_ai.request.stop_sequences"] = JSON.stringify(modelAttrs.parameters.stopSequences);
|
|
468
|
-
}
|
|
378
|
+
if (modelAttrs.usage.reasoningTokens !== void 0) {
|
|
379
|
+
attributes["gen_ai.usage.reasoning_tokens"] = modelAttrs.usage.reasoningTokens;
|
|
469
380
|
}
|
|
470
|
-
if (modelAttrs.
|
|
471
|
-
attributes["gen_ai.
|
|
381
|
+
if (modelAttrs.usage.cachedInputTokens !== void 0) {
|
|
382
|
+
attributes["gen_ai.usage.cached_input_tokens"] = modelAttrs.usage.cachedInputTokens;
|
|
472
383
|
}
|
|
473
384
|
}
|
|
474
|
-
if (
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
attributes["gen_ai.tool.name"] = toolAttrs.toolId;
|
|
385
|
+
if (modelAttrs.parameters) {
|
|
386
|
+
if (modelAttrs.parameters.temperature !== void 0) {
|
|
387
|
+
attributes[ATTR_GEN_AI_REQUEST_TEMPERATURE] = modelAttrs.parameters.temperature;
|
|
478
388
|
}
|
|
479
|
-
if (
|
|
480
|
-
|
|
481
|
-
if (mcpAttrs.mcpServer) {
|
|
482
|
-
attributes["mcp.server"] = mcpAttrs.mcpServer;
|
|
483
|
-
}
|
|
484
|
-
if (mcpAttrs.serverVersion) {
|
|
485
|
-
attributes["mcp.server.version"] = mcpAttrs.serverVersion;
|
|
486
|
-
}
|
|
487
|
-
} else {
|
|
488
|
-
if (toolAttrs.toolDescription) {
|
|
489
|
-
attributes["gen_ai.tool.description"] = toolAttrs.toolDescription;
|
|
490
|
-
}
|
|
389
|
+
if (modelAttrs.parameters.maxOutputTokens !== void 0) {
|
|
390
|
+
attributes[ATTR_GEN_AI_REQUEST_MAX_TOKENS] = modelAttrs.parameters.maxOutputTokens;
|
|
491
391
|
}
|
|
492
|
-
if (
|
|
493
|
-
attributes[
|
|
392
|
+
if (modelAttrs.parameters.topP !== void 0) {
|
|
393
|
+
attributes[ATTR_GEN_AI_REQUEST_TOP_P] = modelAttrs.parameters.topP;
|
|
494
394
|
}
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
const agentAttrs = Span.attributes;
|
|
498
|
-
if (agentAttrs.agentId) {
|
|
499
|
-
attributes["agent.id"] = agentAttrs.agentId;
|
|
500
|
-
attributes["gen_ai.agent.id"] = agentAttrs.agentId;
|
|
395
|
+
if (modelAttrs.parameters.topK !== void 0) {
|
|
396
|
+
attributes[ATTR_GEN_AI_REQUEST_TOP_K] = modelAttrs.parameters.topK;
|
|
501
397
|
}
|
|
502
|
-
if (
|
|
503
|
-
attributes[
|
|
398
|
+
if (modelAttrs.parameters.presencePenalty !== void 0) {
|
|
399
|
+
attributes[ATTR_GEN_AI_REQUEST_PRESENCE_PENALTY] = modelAttrs.parameters.presencePenalty;
|
|
504
400
|
}
|
|
505
|
-
if (
|
|
506
|
-
attributes[
|
|
401
|
+
if (modelAttrs.parameters.frequencyPenalty !== void 0) {
|
|
402
|
+
attributes[ATTR_GEN_AI_REQUEST_FREQUENCY_PENALTY] = modelAttrs.parameters.frequencyPenalty;
|
|
507
403
|
}
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
const workflowAttrs = Span.attributes;
|
|
511
|
-
if (workflowAttrs.workflowId) {
|
|
512
|
-
attributes["workflow.id"] = workflowAttrs.workflowId;
|
|
404
|
+
if (modelAttrs.parameters.stopSequences) {
|
|
405
|
+
attributes[ATTR_GEN_AI_REQUEST_STOP_SEQUENCES] = JSON.stringify(modelAttrs.parameters.stopSequences);
|
|
513
406
|
}
|
|
514
|
-
if (
|
|
515
|
-
attributes[
|
|
407
|
+
if (modelAttrs.parameters.seed) {
|
|
408
|
+
attributes[ATTR_GEN_AI_REQUEST_SEED] = modelAttrs.parameters.seed;
|
|
516
409
|
}
|
|
517
410
|
}
|
|
518
|
-
if (
|
|
519
|
-
attributes[
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
411
|
+
if (modelAttrs.finishReason) {
|
|
412
|
+
attributes[ATTR_GEN_AI_RESPONSE_FINISH_REASONS] = JSON.stringify([modelAttrs.finishReason]);
|
|
413
|
+
}
|
|
414
|
+
if (modelAttrs.responseModel) {
|
|
415
|
+
attributes[ATTR_GEN_AI_RESPONSE_MODEL] = modelAttrs.responseModel;
|
|
416
|
+
}
|
|
417
|
+
if (modelAttrs.responseId) {
|
|
418
|
+
attributes[ATTR_GEN_AI_RESPONSE_ID] = modelAttrs.responseId;
|
|
419
|
+
}
|
|
420
|
+
if (modelAttrs.serverAddress) {
|
|
421
|
+
attributes[ATTR_SERVER_ADDRESS] = modelAttrs.serverAddress;
|
|
422
|
+
}
|
|
423
|
+
if (modelAttrs.serverPort !== void 0) {
|
|
424
|
+
attributes[ATTR_SERVER_PORT] = modelAttrs.serverPort;
|
|
425
|
+
}
|
|
426
|
+
}
|
|
427
|
+
if ((span.type === SpanType.TOOL_CALL || span.type === SpanType.MCP_TOOL_CALL) && span.attributes) {
|
|
428
|
+
const toolAttrs = span.attributes;
|
|
429
|
+
if (toolAttrs.toolId) {
|
|
430
|
+
attributes[ATTR_GEN_AI_TOOL_NAME] = toolAttrs.toolId;
|
|
431
|
+
}
|
|
432
|
+
if (span.type === SpanType.MCP_TOOL_CALL) {
|
|
433
|
+
const mcpAttrs = toolAttrs;
|
|
434
|
+
if (mcpAttrs.mcpServer) {
|
|
435
|
+
attributes[ATTR_SERVER_ADDRESS] = mcpAttrs.mcpServer;
|
|
524
436
|
}
|
|
525
|
-
|
|
526
|
-
|
|
437
|
+
} else {
|
|
438
|
+
if (toolAttrs.toolDescription) {
|
|
439
|
+
attributes[ATTR_GEN_AI_TOOL_DESCRIPTION] = toolAttrs.toolDescription;
|
|
527
440
|
}
|
|
528
441
|
}
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
442
|
+
}
|
|
443
|
+
if (span.type === SpanType.AGENT_RUN && span.attributes) {
|
|
444
|
+
const agentAttrs = span.attributes;
|
|
445
|
+
if (agentAttrs.agentId) {
|
|
446
|
+
attributes[ATTR_GEN_AI_AGENT_ID] = agentAttrs.agentId;
|
|
447
|
+
}
|
|
448
|
+
if (agentAttrs.agentName) {
|
|
449
|
+
attributes[ATTR_GEN_AI_AGENT_NAME] = agentAttrs.agentName;
|
|
450
|
+
}
|
|
451
|
+
if (agentAttrs.conversationId) {
|
|
452
|
+
attributes[ATTR_GEN_AI_CONVERSATION_ID] = agentAttrs.conversationId;
|
|
453
|
+
}
|
|
454
|
+
if (agentAttrs.maxSteps) {
|
|
455
|
+
attributes[`mastra.${spanType}.max_steps`] = agentAttrs.maxSteps;
|
|
542
456
|
}
|
|
543
|
-
if (
|
|
544
|
-
attributes[
|
|
457
|
+
if (agentAttrs.availableTools) {
|
|
458
|
+
attributes[`gen_ai.tool.definitions`] = JSON.stringify(agentAttrs.availableTools);
|
|
545
459
|
}
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
460
|
+
attributes[ATTR_GEN_AI_SYSTEM_INSTRUCTIONS] = agentAttrs.instructions;
|
|
461
|
+
}
|
|
462
|
+
if (span.errorInfo) {
|
|
463
|
+
attributes[ATTR_ERROR_TYPE] = span.errorInfo.id || "unknown";
|
|
464
|
+
attributes[ATTR_ERROR_MESSAGE] = span.errorInfo.message;
|
|
465
|
+
if (span.errorInfo.domain) {
|
|
466
|
+
attributes["error.domain"] = span.errorInfo.domain;
|
|
467
|
+
}
|
|
468
|
+
if (span.errorInfo.category) {
|
|
469
|
+
attributes["error.category"] = span.errorInfo.category;
|
|
550
470
|
}
|
|
551
|
-
return attributes;
|
|
552
471
|
}
|
|
472
|
+
return attributes;
|
|
473
|
+
}
|
|
474
|
+
var PROVIDER_ALIASES = {
|
|
475
|
+
anthropic: ["anthropic", "claude"],
|
|
476
|
+
"aws.bedrock": ["awsbedrock", "bedrock", "amazonbedrock"],
|
|
477
|
+
"azure.ai.inference": ["azureaiinference", "azureinference"],
|
|
478
|
+
"azure.ai.openai": ["azureaiopenai", "azureopenai", "msopenai", "microsoftopenai"],
|
|
479
|
+
cohere: ["cohere"],
|
|
480
|
+
deepseek: ["deepseek"],
|
|
481
|
+
"gcp.gemini": ["gcpgemini", "gemini"],
|
|
482
|
+
"gcp.gen_ai": ["gcpgenai", "googlegenai", "googleai"],
|
|
483
|
+
"gcp.vertex_ai": ["gcpvertexai", "vertexai"],
|
|
484
|
+
groq: ["groq"],
|
|
485
|
+
"ibm.watsonx.ai": ["ibmwatsonxai", "watsonx", "watsonxai"],
|
|
486
|
+
mistral_ai: ["mistral", "mistralai"],
|
|
487
|
+
openai: ["openai", "oai"],
|
|
488
|
+
perplexity: ["perplexity", "pplx"],
|
|
489
|
+
x_ai: ["xai", "x-ai", "x_ai", "x.com ai"]
|
|
490
|
+
};
|
|
491
|
+
function normalizeProviderString(input) {
|
|
492
|
+
return input.toLowerCase().replace(/[^a-z0-9]/g, "");
|
|
493
|
+
}
|
|
494
|
+
function normalizeProvider(providerName) {
|
|
495
|
+
const normalized = normalizeProviderString(providerName);
|
|
496
|
+
for (const [canonical, aliases] of Object.entries(PROVIDER_ALIASES)) {
|
|
497
|
+
for (const alias of aliases) {
|
|
498
|
+
if (normalized === alias) {
|
|
499
|
+
return canonical;
|
|
500
|
+
}
|
|
501
|
+
}
|
|
502
|
+
}
|
|
503
|
+
return providerName.toLowerCase();
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
// src/span-converter.ts
|
|
507
|
+
var SpanConverter = class {
|
|
508
|
+
constructor(params) {
|
|
509
|
+
this.params = params;
|
|
510
|
+
this.format = params.format;
|
|
511
|
+
}
|
|
512
|
+
resource;
|
|
513
|
+
scope;
|
|
514
|
+
initPromise;
|
|
515
|
+
format;
|
|
553
516
|
/**
|
|
554
|
-
*
|
|
517
|
+
* Lazily initialize resource & scope on first use.
|
|
518
|
+
* Subsequent calls reuse the same promise (no races).
|
|
555
519
|
*/
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
const attrs = Span.attributes;
|
|
560
|
-
return attrs?.resultType === "tool_selection" ? "tool_selection" : "chat";
|
|
561
|
-
}
|
|
562
|
-
case SpanType.TOOL_CALL:
|
|
563
|
-
case SpanType.MCP_TOOL_CALL:
|
|
564
|
-
return "tool.execute";
|
|
565
|
-
case SpanType.AGENT_RUN:
|
|
566
|
-
return "agent.run";
|
|
567
|
-
case SpanType.WORKFLOW_RUN:
|
|
568
|
-
return "workflow.run";
|
|
569
|
-
default:
|
|
570
|
-
return Span.type.replace(/_/g, ".");
|
|
520
|
+
async initIfNeeded() {
|
|
521
|
+
if (this.initPromise) {
|
|
522
|
+
return this.initPromise;
|
|
571
523
|
}
|
|
524
|
+
this.initPromise = (async () => {
|
|
525
|
+
const packageVersion = await getPackageVersion(this.params.packageName) ?? "unknown";
|
|
526
|
+
const serviceVersion = await getPackageVersion("@mastra/core") ?? "unknown";
|
|
527
|
+
let resource = resourceFromAttributes({
|
|
528
|
+
[ATTR_SERVICE_NAME]: this.params.serviceName || "mastra-service",
|
|
529
|
+
[ATTR_SERVICE_VERSION]: serviceVersion,
|
|
530
|
+
[ATTR_TELEMETRY_SDK_NAME]: this.params.packageName,
|
|
531
|
+
[ATTR_TELEMETRY_SDK_VERSION]: packageVersion,
|
|
532
|
+
[ATTR_TELEMETRY_SDK_LANGUAGE]: "nodejs"
|
|
533
|
+
});
|
|
534
|
+
if (this.params.config?.resourceAttributes) {
|
|
535
|
+
resource = resource.merge(
|
|
536
|
+
// Duplicate attributes from config will override defaults above
|
|
537
|
+
resourceFromAttributes(this.params.config.resourceAttributes)
|
|
538
|
+
);
|
|
539
|
+
}
|
|
540
|
+
this.resource = resource;
|
|
541
|
+
this.scope = {
|
|
542
|
+
name: this.params.packageName,
|
|
543
|
+
version: packageVersion
|
|
544
|
+
};
|
|
545
|
+
})();
|
|
546
|
+
return this.initPromise;
|
|
572
547
|
}
|
|
573
548
|
/**
|
|
574
|
-
*
|
|
549
|
+
* Convert a Mastra Span to an OpenTelemetry ReadableSpan
|
|
575
550
|
*/
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
return "server";
|
|
581
|
-
case SpanKind.CLIENT:
|
|
582
|
-
return "client";
|
|
583
|
-
case SpanKind.INTERNAL:
|
|
584
|
-
return "internal";
|
|
585
|
-
case SpanKind.PRODUCER:
|
|
586
|
-
return "producer";
|
|
587
|
-
case SpanKind.CONSUMER:
|
|
588
|
-
return "consumer";
|
|
589
|
-
default:
|
|
590
|
-
return "internal";
|
|
551
|
+
async convertSpan(span) {
|
|
552
|
+
await this.initIfNeeded();
|
|
553
|
+
if (!this.resource || !this.scope) {
|
|
554
|
+
throw new Error("SpanConverter not initialized correctly");
|
|
591
555
|
}
|
|
556
|
+
const name = getSpanName(span);
|
|
557
|
+
const kind = getSpanKind(span.type);
|
|
558
|
+
const attributes = getAttributes(span);
|
|
559
|
+
if (span.metadata) {
|
|
560
|
+
for (const [k, v] of Object.entries(span.metadata)) {
|
|
561
|
+
if (v === null || v === void 0) {
|
|
562
|
+
continue;
|
|
563
|
+
}
|
|
564
|
+
attributes[`mastra.metadata.${k}`] = typeof v === "object" ? JSON.stringify(v) : v;
|
|
565
|
+
}
|
|
566
|
+
}
|
|
567
|
+
if (span.isRootSpan && span.tags?.length) {
|
|
568
|
+
attributes["mastra.tags"] = JSON.stringify(span.tags);
|
|
569
|
+
}
|
|
570
|
+
const startTime = dateToHrTime(span.startTime);
|
|
571
|
+
const endTime = span.endTime ? dateToHrTime(span.endTime) : startTime;
|
|
572
|
+
const duration = computeDuration(span.startTime, span.endTime);
|
|
573
|
+
const { status, events } = buildStatusAndEvents(span, startTime);
|
|
574
|
+
const spanContext = {
|
|
575
|
+
traceId: span.traceId,
|
|
576
|
+
spanId: span.id,
|
|
577
|
+
traceFlags: TraceFlags.SAMPLED,
|
|
578
|
+
isRemote: false
|
|
579
|
+
};
|
|
580
|
+
const parentSpanContext = span.parentSpanId ? {
|
|
581
|
+
traceId: span.traceId,
|
|
582
|
+
spanId: span.parentSpanId,
|
|
583
|
+
traceFlags: TraceFlags.SAMPLED,
|
|
584
|
+
isRemote: false
|
|
585
|
+
} : void 0;
|
|
586
|
+
const links = [];
|
|
587
|
+
const readable = {
|
|
588
|
+
name,
|
|
589
|
+
kind,
|
|
590
|
+
spanContext: () => spanContext,
|
|
591
|
+
parentSpanContext,
|
|
592
|
+
startTime,
|
|
593
|
+
endTime,
|
|
594
|
+
status,
|
|
595
|
+
attributes,
|
|
596
|
+
links,
|
|
597
|
+
events,
|
|
598
|
+
duration,
|
|
599
|
+
ended: !!span.endTime,
|
|
600
|
+
resource: this.resource,
|
|
601
|
+
instrumentationScope: this.scope,
|
|
602
|
+
droppedAttributesCount: 0,
|
|
603
|
+
droppedEventsCount: 0,
|
|
604
|
+
droppedLinksCount: 0
|
|
605
|
+
};
|
|
606
|
+
return readable;
|
|
592
607
|
}
|
|
593
608
|
};
|
|
609
|
+
async function getPackageVersion(pkgName) {
|
|
610
|
+
try {
|
|
611
|
+
const manifestUrl = new URL(await import.meta.resolve(`${pkgName}/package.json`));
|
|
612
|
+
const path = fileURLToPath(manifestUrl);
|
|
613
|
+
const pkgJson = JSON.parse(readFileSync(path, "utf8"));
|
|
614
|
+
return pkgJson.version;
|
|
615
|
+
} catch {
|
|
616
|
+
return void 0;
|
|
617
|
+
}
|
|
618
|
+
}
|
|
619
|
+
function getSpanKind(type) {
|
|
620
|
+
switch (type) {
|
|
621
|
+
case SpanType.MODEL_GENERATION:
|
|
622
|
+
case SpanType.MCP_TOOL_CALL:
|
|
623
|
+
return SpanKind.CLIENT;
|
|
624
|
+
default:
|
|
625
|
+
return SpanKind.INTERNAL;
|
|
626
|
+
}
|
|
627
|
+
}
|
|
628
|
+
function dateToHrTime(date) {
|
|
629
|
+
const ms = date.getTime();
|
|
630
|
+
const seconds = Math.floor(ms / 1e3);
|
|
631
|
+
const nanoseconds = ms % 1e3 * 1e6;
|
|
632
|
+
return [seconds, nanoseconds];
|
|
633
|
+
}
|
|
634
|
+
function computeDuration(start, end) {
|
|
635
|
+
if (!end) return [0, 0];
|
|
636
|
+
const diffMs = end.getTime() - start.getTime();
|
|
637
|
+
return [Math.floor(diffMs / 1e3), diffMs % 1e3 * 1e6];
|
|
638
|
+
}
|
|
639
|
+
function buildStatusAndEvents(span, defaultTime) {
|
|
640
|
+
const events = [];
|
|
641
|
+
if (span.errorInfo) {
|
|
642
|
+
const status = {
|
|
643
|
+
code: SpanStatusCode.ERROR,
|
|
644
|
+
message: span.errorInfo.message
|
|
645
|
+
};
|
|
646
|
+
events.push({
|
|
647
|
+
name: "exception",
|
|
648
|
+
attributes: {
|
|
649
|
+
"exception.message": span.errorInfo.message,
|
|
650
|
+
"exception.type": "Error",
|
|
651
|
+
...span.errorInfo.details?.stack && {
|
|
652
|
+
"exception.stacktrace": span.errorInfo.details.stack
|
|
653
|
+
}
|
|
654
|
+
},
|
|
655
|
+
time: defaultTime,
|
|
656
|
+
droppedAttributesCount: 0
|
|
657
|
+
});
|
|
658
|
+
return { status, events };
|
|
659
|
+
}
|
|
660
|
+
if (span.endTime) {
|
|
661
|
+
return {
|
|
662
|
+
status: { code: SpanStatusCode.OK },
|
|
663
|
+
events
|
|
664
|
+
};
|
|
665
|
+
}
|
|
666
|
+
return {
|
|
667
|
+
status: { code: SpanStatusCode.UNSET },
|
|
668
|
+
events
|
|
669
|
+
};
|
|
670
|
+
}
|
|
594
671
|
|
|
595
672
|
// src/tracing.ts
|
|
596
673
|
var OtelExporter = class extends BaseExporter {
|
|
597
674
|
config;
|
|
598
|
-
|
|
675
|
+
observabilityConfig;
|
|
599
676
|
spanConverter;
|
|
600
677
|
processor;
|
|
601
678
|
exporter;
|
|
@@ -604,7 +681,6 @@ var OtelExporter = class extends BaseExporter {
|
|
|
604
681
|
constructor(config) {
|
|
605
682
|
super(config);
|
|
606
683
|
this.config = config;
|
|
607
|
-
this.spanConverter = new SpanConverter();
|
|
608
684
|
if (config.logLevel === "debug") {
|
|
609
685
|
diag.setLogger(new DiagConsoleLogger(), DiagLogLevel.DEBUG);
|
|
610
686
|
}
|
|
@@ -613,7 +689,7 @@ var OtelExporter = class extends BaseExporter {
|
|
|
613
689
|
* Initialize with tracing configuration
|
|
614
690
|
*/
|
|
615
691
|
init(options) {
|
|
616
|
-
this.
|
|
692
|
+
this.observabilityConfig = options.config;
|
|
617
693
|
}
|
|
618
694
|
async setupExporter() {
|
|
619
695
|
if (this.isSetup || this.exporter) return;
|
|
@@ -691,21 +767,12 @@ var OtelExporter = class extends BaseExporter {
|
|
|
691
767
|
}
|
|
692
768
|
async setupProcessor() {
|
|
693
769
|
if (this.processor || this.isSetup) return;
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
[ATTR_TELEMETRY_SDK_VERSION]: "1.0.0",
|
|
700
|
-
[ATTR_TELEMETRY_SDK_LANGUAGE]: "nodejs"
|
|
770
|
+
this.spanConverter = new SpanConverter({
|
|
771
|
+
packageName: "@mastra/otel-exporter",
|
|
772
|
+
serviceName: this.observabilityConfig?.serviceName,
|
|
773
|
+
config: this.config,
|
|
774
|
+
format: "GenAI_v1_38_0"
|
|
701
775
|
});
|
|
702
|
-
if (this.config.resourceAttributes) {
|
|
703
|
-
resource = resource.merge(
|
|
704
|
-
// Duplicate attributes from config will override defaults above
|
|
705
|
-
resourceFromAttributes(this.config.resourceAttributes)
|
|
706
|
-
);
|
|
707
|
-
}
|
|
708
|
-
this.spanConverter = new SpanConverter(resource);
|
|
709
776
|
this.processor = new BatchSpanProcessor(this.exporter, {
|
|
710
777
|
maxExportBatchSize: this.config.batchSize || 512,
|
|
711
778
|
// Default batch size
|
|
@@ -741,9 +808,9 @@ var OtelExporter = class extends BaseExporter {
|
|
|
741
808
|
return;
|
|
742
809
|
}
|
|
743
810
|
try {
|
|
744
|
-
const
|
|
811
|
+
const otelSpan = await this.spanConverter.convertSpan(span);
|
|
745
812
|
await new Promise((resolve) => {
|
|
746
|
-
this.processor.onEnd(
|
|
813
|
+
this.processor.onEnd(otelSpan);
|
|
747
814
|
resolve();
|
|
748
815
|
});
|
|
749
816
|
this.logger.debug(
|
|
@@ -760,6 +827,6 @@ var OtelExporter = class extends BaseExporter {
|
|
|
760
827
|
}
|
|
761
828
|
};
|
|
762
829
|
|
|
763
|
-
export { OtelExporter };
|
|
830
|
+
export { OtelExporter, SpanConverter, getSpanKind };
|
|
764
831
|
//# sourceMappingURL=index.js.map
|
|
765
832
|
//# sourceMappingURL=index.js.map
|