@poncho-ai/harness 0.20.3 → 0.20.4

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @poncho-ai/harness@0.20.3 build /home/runner/work/poncho-ai/poncho-ai/packages/harness
2
+ > @poncho-ai/harness@0.20.4 build /home/runner/work/poncho-ai/poncho-ai/packages/harness
3
3
  > tsup src/index.ts --format esm --dts
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -7,8 +7,8 @@
7
7
  CLI tsup v8.5.1
8
8
  CLI Target: es2022
9
9
  ESM Build start
10
- ESM dist/index.js 200.14 KB
11
- ESM ⚡️ Build success in 157ms
10
+ ESM dist/index.js 199.61 KB
11
+ ESM ⚡️ Build success in 134ms
12
12
  DTS Build start
13
- DTS ⚡️ Build success in 7386ms
13
+ DTS ⚡️ Build success in 6692ms
14
14
  DTS dist/index.d.ts 24.36 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @poncho-ai/harness
2
2
 
3
+ ## 0.20.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [`c35f676`](https://github.com/cesr/poncho-ai/commit/c35f676cdc548a3db9212ae7909302a5b876bc40) Thanks [@cesr](https://github.com/cesr)! - Switch Latitude telemetry to use BatchSpanProcessor (default) instead of SimpleSpanProcessor. Sends all spans from a trace together in one OTLP batch, matching Latitude's expected integration pattern.
8
+
3
9
  ## 0.20.3
4
10
 
5
11
  ### Patch Changes
package/dist/index.js CHANGED
@@ -3489,25 +3489,9 @@ var AgentHarness = class {
3489
3489
  },
3490
3490
  DiagLogLevel.ERROR
3491
3491
  );
3492
- this.latitudeTelemetry = new LatitudeTelemetry(latitudeApiKey, { disableBatch: true });
3493
- const provider2 = this.latitudeTelemetry.nodeProvider;
3494
- if (provider2?.addSpanProcessor) {
3495
- provider2.addSpanProcessor({
3496
- onStart() {
3497
- },
3498
- onEnd(span) {
3499
- console.info(
3500
- `[poncho][otel-diag] span ended: name="${span.name}" traceId=${span.spanContext().traceId} parent=${span.parentSpanId ?? "none"}`
3501
- );
3502
- },
3503
- forceFlush() {
3504
- return Promise.resolve();
3505
- },
3506
- shutdown() {
3507
- return Promise.resolve();
3508
- }
3509
- });
3510
- }
3492
+ this.latitudeTelemetry = new LatitudeTelemetry(latitudeApiKey, {
3493
+ instrumentations: {}
3494
+ });
3511
3495
  } else if (telemetryEnabled && latitudeBlock && (!latitudeApiKey || !latitudeProjectId)) {
3512
3496
  const missing = [];
3513
3497
  if (!latitudeApiKey) missing.push(`${latApiKeyEnv} env var`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@poncho-ai/harness",
3
- "version": "0.20.3",
3
+ "version": "0.20.4",
4
4
  "description": "Agent execution runtime - conversation loop, tool dispatch, streaming",
5
5
  "repository": {
6
6
  "type": "git",
package/src/harness.ts CHANGED
@@ -928,21 +928,9 @@ export class AgentHarness {
928
928
  },
929
929
  DiagLogLevel.ERROR,
930
930
  );
931
- this.latitudeTelemetry = new LatitudeTelemetry(latitudeApiKey, { disableBatch: true });
932
- // Diagnostic: log every span that passes through the pipeline
933
- const provider = (this.latitudeTelemetry as unknown as { nodeProvider: { addSpanProcessor(p: unknown): void } }).nodeProvider;
934
- if (provider?.addSpanProcessor) {
935
- provider.addSpanProcessor({
936
- onStart() {},
937
- onEnd(span: { name: string; spanContext(): { traceId: string }; parentSpanId?: string }) {
938
- console.info(
939
- `[poncho][otel-diag] span ended: name="${span.name}" traceId=${span.spanContext().traceId} parent=${span.parentSpanId ?? "none"}`,
940
- );
941
- },
942
- forceFlush() { return Promise.resolve(); },
943
- shutdown() { return Promise.resolve(); },
944
- });
945
- }
931
+ this.latitudeTelemetry = new LatitudeTelemetry(latitudeApiKey, {
932
+ instrumentations: {},
933
+ });
946
934
  } else if (telemetryEnabled && latitudeBlock && (!latitudeApiKey || !latitudeProjectId)) {
947
935
  const missing: string[] = [];
948
936
  if (!latitudeApiKey) missing.push(`${latApiKeyEnv} env var`);