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