@blaxel/telemetry 0.2.17-dev.107 → 0.2.17-dev.109

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.
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.OtelTelemetryProvider = void 0;
4
4
  const api_1 = require("@opentelemetry/api");
5
5
  const telemetry_1 = require("./telemetry");
6
+ const core_1 = require("@blaxel/core");
6
7
  class OtelSpan {
7
8
  span;
8
9
  constructor(span) {
@@ -40,8 +41,19 @@ class OtelTelemetryProvider {
40
41
  attributes: options?.attributes,
41
42
  root: options?.isRoot,
42
43
  };
43
- // Handle parent context properly
44
+ // Handle parent context properly with debugging
44
45
  let ctx = api_1.context.active();
46
+ const activeSpan = api_1.trace.getActiveSpan();
47
+ // Debug logging for context issues
48
+ core_1.logger.info(`Creating span "${name}":`, {
49
+ hasActiveSpan: !!activeSpan,
50
+ activeSpanId: activeSpan?.spanContext().spanId,
51
+ isRoot: options?.isRoot,
52
+ hasParentContext: !!options?.parentContext,
53
+ parentContext: options?.parentContext,
54
+ activeContext: ctx,
55
+ otelOptions,
56
+ });
45
57
  if (options?.parentContext) {
46
58
  // If explicit parent context is provided, use it
47
59
  ctx = api_1.trace.setSpanContext(api_1.ROOT_CONTEXT, options.parentContext);
@@ -53,7 +65,15 @@ class OtelTelemetryProvider {
53
65
  // Otherwise, use the active context (default behavior)
54
66
  // Start the span with proper context
55
67
  const span = tracer.startSpan(name, otelOptions, ctx);
56
- return new OtelSpan(span);
68
+ const otelSpan = new OtelSpan(span);
69
+ // Additional debugging
70
+ const spanContext = span.spanContext();
71
+ core_1.logger.info(`Created span "${name}":`, {
72
+ spanId: spanContext.spanId,
73
+ traceId: spanContext.traceId,
74
+ parentSpanId: activeSpan?.spanContext().spanId || "none",
75
+ });
76
+ return otelSpan;
57
77
  }
58
78
  async flush() {
59
79
  await telemetry_1.blaxelTelemetry.flush();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blaxel/telemetry",
3
- "version": "0.2.17-dev.107",
3
+ "version": "0.2.17-dev.109",
4
4
  "description": "Blaxel SDK for TypeScript",
5
5
  "license": "MIT",
6
6
  "author": "Blaxel, INC (https://blaxel.ai)",
@@ -71,7 +71,7 @@
71
71
  "@opentelemetry/sdk-trace-base": "^2.0.0",
72
72
  "@opentelemetry/sdk-trace-node": "^2.0.0",
73
73
  "ai": "^4.3.13",
74
- "@blaxel/core": "0.2.17-dev.107"
74
+ "@blaxel/core": "0.2.17-dev.109"
75
75
  },
76
76
  "devDependencies": {
77
77
  "@eslint/js": "^9.26.0",