File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed
src/opentelemetry/sdk/resources Expand file tree Collapse file tree 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
1717 ([ #4270 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/4270 ) )
1818- api: fix logging of duplicate EventLogger setup warning
1919 ([ #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 ) )
2022- sdk: fix serialization of logs severity_number field to int
2123 ([ #4324 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/4324 ) )
2224
Original file line number Diff line number Diff line change 8484try :
8585 import psutil as psutil_module
8686
87- pustil = psutil_module
87+ psutil = psutil_module
8888except ImportError :
8989 pass
9090
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ importlib-metadata==6.11.0
55iniconfig==2.0.0
66packaging==24.0
77pluggy==1.5.0
8+ psutil==5.9.6; sys_platform != 'win32'
89py-cpuinfo==9.0.0
910pytest==7.4.4
1011tomli==2.0.1
You can’t perform that action at this time.
0 commit comments