File tree 3 files changed +4
-1
lines changed
src/opentelemetry/sdk/resources
3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
17
17
([ #4270 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/4270 ) )
18
18
- api: fix logging of duplicate EventLogger setup warning
19
19
([ #4299 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/4299 ) )
20
+ - sdk: fix setting of process owner in ProcessResourceDetector
21
+ ([ #4311 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/4311 ) )
20
22
- sdk: fix serialization of logs severity_number field to int
21
23
([ #4324 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/4324 ) )
22
24
Original file line number Diff line number Diff line change 84
84
try :
85
85
import psutil as psutil_module
86
86
87
- pustil = psutil_module
87
+ psutil = psutil_module
88
88
except ImportError :
89
89
pass
90
90
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ importlib-metadata==6.11.0
5
5
iniconfig==2.0.0
6
6
packaging==24.0
7
7
pluggy==1.5.0
8
+ psutil==5.9.6; sys_platform != 'win32'
8
9
py-cpuinfo==9.0.0
9
10
pytest==7.4.4
10
11
tomli==2.0.1
You can’t perform that action at this time.
0 commit comments