agentfootprint 2.8.2 → 2.9.0

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.
@@ -28,11 +28,18 @@
28
28
  *
29
29
  * Roadmap:
30
30
  * - agentcoreObservability ← v2.8.1
31
- * - cloudwatchObservability ← v2.8.2 (this release)
31
+ * - cloudwatchObservability ← v2.8.2
32
32
  * - xrayObservability ← v2.8.3
33
- * - otelObservability ← v2.9.x
34
- * - datadogObservability ← v2.9.x
33
+ * - otelObservability ← v2.9.0 (this release)
34
+ *
35
+ * Note: `datadogObservability` was on the v2.9 roadmap, but Datadog
36
+ * APM accepts OTLP — point your OTel SDK at Datadog's OTLP endpoint
37
+ * and `otelObservability` covers the Datadog use case. We'll ship a
38
+ * dedicated `dd-trace`-based adapter only if real-world feedback
39
+ * demands the native Datadog APM client.
35
40
  */
36
41
  export { agentcoreObservability, type AgentcoreObservabilityOptions, } from './adapters/observability/agentcore.js';
37
42
  export { cloudwatchObservability, type CloudwatchObservabilityOptions, } from './adapters/observability/cloudwatch.js';
43
+ export { xrayObservability, type XrayObservabilityOptions, type XRayLikeClient, } from './adapters/observability/xray.js';
44
+ export { otelObservability, type OtelObservabilityOptions, type OtelTracerLike, type OtelSpanLike, type OtelSpanOptions, } from './adapters/observability/otel.js';
38
45
  //# sourceMappingURL=observability-providers.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"observability-providers.d.ts","sourceRoot":"","sources":["../../src/observability-providers.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AAEH,OAAO,EACL,sBAAsB,EACtB,KAAK,6BAA6B,GACnC,MAAM,uCAAuC,CAAC;AAC/C,OAAO,EACL,uBAAuB,EACvB,KAAK,8BAA8B,GACpC,MAAM,wCAAwC,CAAC"}
1
+ {"version":3,"file":"observability-providers.d.ts","sourceRoot":"","sources":["../../src/observability-providers.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuCG;AAEH,OAAO,EACL,sBAAsB,EACtB,KAAK,6BAA6B,GACnC,MAAM,uCAAuC,CAAC;AAC/C,OAAO,EACL,uBAAuB,EACvB,KAAK,8BAA8B,GACpC,MAAM,wCAAwC,CAAC;AAChD,OAAO,EACL,iBAAiB,EACjB,KAAK,wBAAwB,EAC7B,KAAK,cAAc,GACpB,MAAM,kCAAkC,CAAC;AAC1C,OAAO,EACL,iBAAiB,EACjB,KAAK,wBAAwB,EAC7B,KAAK,cAAc,EACnB,KAAK,YAAY,EACjB,KAAK,eAAe,GACrB,MAAM,kCAAkC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentfootprint",
3
- "version": "2.8.2",
3
+ "version": "2.9.0",
4
4
  "description": "The explainable agent framework — build AI agents you can explain, audit, and trust. Built on footprintjs.",
5
5
  "license": "MIT",
6
6
  "author": "Sanjay Krishna Anbalagan",
@@ -171,7 +171,9 @@
171
171
  "@aws-sdk/client-bedrock-agent-runtime": "*",
172
172
  "@aws-sdk/client-bedrock-runtime": "*",
173
173
  "@aws-sdk/client-cloudwatch-logs": "*",
174
+ "@aws-sdk/client-xray": "*",
174
175
  "@modelcontextprotocol/sdk": "*",
176
+ "@opentelemetry/api": "*",
175
177
  "footprintjs": ">=4.17.1",
176
178
  "ioredis": "*",
177
179
  "openai": "*",
@@ -193,9 +195,15 @@
193
195
  "@aws-sdk/client-cloudwatch-logs": {
194
196
  "optional": true
195
197
  },
198
+ "@aws-sdk/client-xray": {
199
+ "optional": true
200
+ },
196
201
  "@modelcontextprotocol/sdk": {
197
202
  "optional": true
198
203
  },
204
+ "@opentelemetry/api": {
205
+ "optional": true
206
+ },
199
207
  "ioredis": {
200
208
  "optional": true
201
209
  },