@mastra/observability 1.17.4-alpha.0 → 1.17.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.
- package/CHANGELOG.md +21 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @mastra/observability
|
|
2
2
|
|
|
3
|
+
## 1.17.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fixed `MastraPlatformExporter` ignoring the documented `MASTRA_PLATFORM_OBSERVABILITY_ENDPOINT` environment variable. The exporter now reads it as an observability endpoint override, so projects in non-default regions can route traces, logs, metrics, scores, and feedback to the right collector. ([#22480](https://github.com/mastra-ai/mastra/pull/22480))
|
|
8
|
+
|
|
9
|
+
```dotenv
|
|
10
|
+
# Base origin (other signal endpoints are derived from it)
|
|
11
|
+
MASTRA_PLATFORM_OBSERVABILITY_ENDPOINT=https://observability.eu.mastra.ai
|
|
12
|
+
|
|
13
|
+
# Or a full traces publish URL
|
|
14
|
+
MASTRA_PLATFORM_OBSERVABILITY_ENDPOINT=https://observability.eu.mastra.ai/spans/publish
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
The legacy `MASTRA_CLOUD_TRACES_ENDPOINT` variable still works and takes precedence when both are set.
|
|
18
|
+
|
|
19
|
+
- Fixed output stream processors losing their observability data after the first step of a multi-step agent run. Tripwire aborts from processors like `TokenLimiterProcessor` (`strategy: 'abort'`) that fire in a later step now show up on the `processor_run` span instead of an empty span. ([#22470](https://github.com/mastra-ai/mastra/pull/22470))
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [[`bae1502`](https://github.com/mastra-ai/mastra/commit/bae150254b06a4da6964d7c137af97f336362359), [`0885364`](https://github.com/mastra-ai/mastra/commit/0885364c2fc7fa31febcfc444fc1ba5231ac1257), [`b8cb683`](https://github.com/mastra-ai/mastra/commit/b8cb683ba66499df254ddd1f7edd8cae3f89d2e7), [`078affd`](https://github.com/mastra-ai/mastra/commit/078affdaea57ac5e95a77e9e7b197d1878190684), [`9e3403e`](https://github.com/mastra-ai/mastra/commit/9e3403e9868240cb18841898e84cf008ebd7a87e), [`791bf5e`](https://github.com/mastra-ai/mastra/commit/791bf5e81cd27e2e1cff66122f1380ab8a3dda41)]:
|
|
22
|
+
- @mastra/core@1.63.1
|
|
23
|
+
|
|
3
24
|
## 1.17.4-alpha.0
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/observability",
|
|
3
|
-
"version": "1.17.4
|
|
3
|
+
"version": "1.17.4",
|
|
4
4
|
"description": "Core observability package for Mastra - includes tracing and scoring features",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"typescript": "^6.0.3",
|
|
33
33
|
"vitest": "4.1.10",
|
|
34
34
|
"zod": "^4.4.3",
|
|
35
|
-
"@internal/ai-sdk-v4": "0.0.
|
|
36
|
-
"@internal/
|
|
37
|
-
"@internal/
|
|
38
|
-
"@internal/
|
|
39
|
-
"@mastra/core": "1.63.1
|
|
35
|
+
"@internal/ai-sdk-v4": "0.0.75",
|
|
36
|
+
"@internal/types-builder": "0.0.103",
|
|
37
|
+
"@internal/lint": "0.0.128",
|
|
38
|
+
"@internal/ai-sdk-v5": "0.0.75",
|
|
39
|
+
"@mastra/core": "1.63.1"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
42
|
"@mastra/core": ">=1.16.0-0 <2.0.0-0",
|