Skip to content

Commit d92abc4

Browse files
authored
Release azure-monitor-opentelemetry-exporter (#38310)
1 parent 2b60d8d commit d92abc4

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

sdk/monitor/azure-monitor-opentelemetry-exporter/CHANGELOG.md

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
# Release History
22

3-
## 1.0.0b32 (Unreleased)
4-
5-
### Features Added
3+
## 1.0.0b32 (2024-11-04)
64

75
### Breaking Changes
86

97
- Serialize complex objects provided as log or event bodies to JSON and
108
fall back to string representation if they are not serializable.
11-
([37694](https://github.com/Azure/azure-sdk-for-python/pull/37694))
12-
13-
### Bugs Fixed
9+
([#37694](https://github.com/Azure/azure-sdk-for-python/pull/37694))
1410

1511
### Other Changes
1612

sdk/monitor/azure-monitor-opentelemetry-exporter/azure/monitor/opentelemetry/exporter/_quickpulse/_live_metrics.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def __init__(self, **kwargs: Any) -> None:
100100
self._base_monitoring_data_point = MonitoringDataPoint(
101101
version=_get_sdk_version(),
102102
# Invariant version 5 indicates filtering is supported
103-
invariant_version=5,
103+
invariant_version=2,
104104
instance=part_a_fields.get(ContextTagKeys.AI_CLOUD_ROLE_INSTANCE, ""),
105105
role_name=part_a_fields.get(ContextTagKeys.AI_CLOUD_ROLE, ""),
106106
machine_name=platform.node(),

sdk/monitor/azure-monitor-opentelemetry-exporter/tests/quickpulse/test_live_metrics.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def test_init(self, generator_mock):
102102
"4321abcd-5678-4efa-8abc-1234567890ac",
103103
)
104104
self.assertEqual(qpm._base_monitoring_data_point.version, _get_sdk_version())
105-
self.assertEqual(qpm._base_monitoring_data_point.invariant_version, 5)
105+
self.assertEqual(qpm._base_monitoring_data_point.invariant_version, 2)
106106
self.assertEqual(
107107
qpm._base_monitoring_data_point.instance, part_a_fields.get(ContextTagKeys.AI_CLOUD_ROLE_INSTANCE, "")
108108
)

0 commit comments

Comments
 (0)