@mastra/observability 1.6.0-alpha.0 → 1.6.0-alpha.1
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 +20 -0
- package/dist/index.cjs +6 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +6 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @mastra/observability
|
|
2
2
|
|
|
3
|
+
## 1.6.0-alpha.1
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Added cost estimation for observability metrics. ([#14609](https://github.com/mastra-ai/mastra/pull/14609))
|
|
8
|
+
- Added embedded pricing data and runtime cost estimation for auto-extracted model token metrics.
|
|
9
|
+
- Added cost context propagation through observability metrics and exporters.
|
|
10
|
+
|
|
11
|
+
**Breaking / Upgrade Notes**
|
|
12
|
+
- This version adds metric cost estimation and requires the newer observability fields and hooks provided by `@mastra/core >=1.17.0-0`.
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Fixed cost estimation matching for AI SDK providers by normalizing provider names (e.g. 'openai.chat' → 'openai') to match pricing data keys. ([#14716](https://github.com/mastra-ai/mastra/pull/14716))
|
|
17
|
+
|
|
18
|
+
- Improved model usage normalization and total cost reporting. Model generation spans now populate input and output text detail buckets from the reported totals when providers do not supply a full breakdown, and `mastra_model_total_input_tokens` / `mastra_model_total_output_tokens` now include estimated cost based on the successfully priced detail buckets for those totals. ([#14674](https://github.com/mastra-ai/mastra/pull/14674))
|
|
19
|
+
|
|
20
|
+
- Updated dependencies [[`dc514a8`](https://github.com/mastra-ai/mastra/commit/dc514a83dba5f719172dddfd2c7b858e4943d067), [`404fea1`](https://github.com/mastra-ai/mastra/commit/404fea13042181f0b0c73a101392ac87c79ceae2), [`ebf5047`](https://github.com/mastra-ai/mastra/commit/ebf5047e825c38a1a356f10b214c1d4260dfcd8d), [`675f15b`](https://github.com/mastra-ai/mastra/commit/675f15b7eaeea649158d228ea635be40480c584d), [`b174c63`](https://github.com/mastra-ai/mastra/commit/b174c63a093108d4e53b9bc89a078d9f66202b3f), [`eef7cb2`](https://github.com/mastra-ai/mastra/commit/eef7cb2abe7ef15951e2fdf792a5095c6c643333), [`e8a5b0b`](https://github.com/mastra-ai/mastra/commit/e8a5b0b9bc94d12dee4150095512ca27a288d778)]:
|
|
21
|
+
- @mastra/core@1.18.0-alpha.0
|
|
22
|
+
|
|
3
23
|
## 1.6.0-alpha.0
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|
package/dist/index.cjs
CHANGED
|
@@ -17503,11 +17503,16 @@ function getPackageRoot() {
|
|
|
17503
17503
|
}
|
|
17504
17504
|
}
|
|
17505
17505
|
function makePricingKey(args) {
|
|
17506
|
-
return `${
|
|
17506
|
+
return `${normalizeProvider(args.provider)}::${normalizeKeyPart(args.model)}`;
|
|
17507
17507
|
}
|
|
17508
17508
|
function normalizeKeyPart(value) {
|
|
17509
17509
|
return value.trim().toLowerCase();
|
|
17510
17510
|
}
|
|
17511
|
+
function normalizeProvider(provider) {
|
|
17512
|
+
const normalized = provider.trim().toLowerCase();
|
|
17513
|
+
const dotIndex = normalized.indexOf(".");
|
|
17514
|
+
return dotIndex !== -1 ? normalized.substring(0, dotIndex) : normalized;
|
|
17515
|
+
}
|
|
17511
17516
|
|
|
17512
17517
|
// src/metrics/types.ts
|
|
17513
17518
|
var PricingMeter = {
|