Commit c28ff4d 1 parent b29682b commit c28ff4d Copy full SHA for c28ff4d
File tree 3 files changed +3
-2
lines changed
resource/opentelemetry-resource-detector-azure
src/opentelemetry/resource/detector/azure
3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
18
18
19
19
- ` opentelemetry-instrumentation-urllib ` /` opentelemetry-instrumentation-urllib3 ` Fix metric descriptions to match semantic conventions
20
20
([ #1959 ] ( (https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1959) )
21
+ - ` opentelemetry-resource-detector-azure ` Added dependency for Cloud Resource ID attribute and clearer logging for Azure Resource Detectors
22
+ ([ #2072 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2072 ) )
21
23
22
24
## Version 1.21.0/0.42b0 (2023-11-01)
23
25
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ classifiers = [
25
25
" Programming Language :: Python :: 3.11" ,
26
26
]
27
27
dependencies = [
28
- " opentelemetry-sdk ~= 1.19 " ,
28
+ " opentelemetry-sdk ~= 1.21 " ,
29
29
]
30
30
31
31
[project .optional-dependencies ]
Original file line number Diff line number Diff line change 24
24
ResourceAttributes ,
25
25
)
26
26
27
- # TODO: Remove when cloud resource id is no longer missing in Resource Attributes
28
27
_AZURE_VM_METADATA_ENDPOINT = "http://169.254.169.254/metadata/instance/compute?api-version=2021-12-13&format=json"
29
28
_AZURE_VM_SCALE_SET_NAME_ATTRIBUTE = "azure.vm.scaleset.name"
30
29
_AZURE_VM_SKU_ATTRIBUTE = "azure.vm.sku"
You can’t perform that action at this time.
0 commit comments