Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
1e68c3c
Initial Commit
DylanRussell Jul 16, 2025
06dee51
Fix broken tests
DylanRussell Jul 17, 2025
c500b15
Start writing test
DylanRussell Jul 17, 2025
a6dcd1c
Fix tests
DylanRussell Jul 17, 2025
5ef26f2
Merge branch 'main' of github.com:DylanRussell/opentelemetry-python i…
DylanRussell Jul 18, 2025
2e76e59
Add changelog
DylanRussell Jul 18, 2025
9344ebd
Improne and fix _init_exporter func
DylanRussell Jul 18, 2025
cc89293
Fix desc
DylanRussell Jul 18, 2025
f27856f
Run precommit and update variable
DylanRussell Jul 21, 2025
82d72bb
Update changelog
DylanRussell Jul 21, 2025
2244d5a
Merge branch 'main' into add_cred_envvar
DylanRussell Jul 21, 2025
afaf88d
Merge remote-tracking branch 'origin' into add_cred_envvar
DylanRussell Aug 12, 2025
4881780
Fix_type
DylanRussell Aug 12, 2025
66fb14d
Commit changes
DylanRussell Aug 12, 2025
fcadee2
Add test
DylanRussell Aug 13, 2025
6c2740a
fix envvar and typecheck
DylanRussell Aug 13, 2025
0dc2861
Precommit and constraints
DylanRussell Aug 13, 2025
99a55d4
Move change to exporter
DylanRussell Aug 25, 2025
9bf07a7
Move common code to util.
DylanRussell Aug 25, 2025
ae576c1
Merge branch 'main' into add_cred_envvar
DylanRussell Aug 25, 2025
65f177b
Fix lint err and print statment
DylanRussell Sep 2, 2025
ffeb2d2
Merge branch 'main' into add_cred_envvar
DylanRussell Sep 2, 2025
efe5a94
Update opentelemetry-sdk/src/opentelemetry/sdk/environment_variables/…
DylanRussell Sep 8, 2025
0b21293
Respond to comments
DylanRussell Sep 8, 2025
205efa3
Merge branch 'add_cred_envvar' of github.com:DylanRussell/opentelemet…
DylanRussell Sep 8, 2025
810ec49
Ruff
DylanRussell Sep 8, 2025
9b95dfa
Document the entry points better
DylanRussell Sep 8, 2025
9934efe
Going with factory function approach w/ 2 entry points
DylanRussell Sep 8, 2025
24119fb
Add tests.. Fix tox.ini ?
DylanRussell Sep 8, 2025
813c11c
Add http/grpc env var variants
DylanRussell Sep 8, 2025
97fa836
Respond to comments
DylanRussell Sep 8, 2025
e7027a0
Rename python env var with _
DylanRussell Sep 8, 2025
f06d8db
Precommit
DylanRussell Sep 8, 2025
3ab6126
Commit changes
DylanRussell Sep 8, 2025
3e409cc
add new line
DylanRussell Sep 8, 2025
5632fe0
Fix docs error..
DylanRussell Sep 8, 2025
f0fc0f6
get rid of envvar in docstring
DylanRussell Sep 8, 2025
0e0fb9d
Revert tox.ini changes
DylanRussell Sep 9, 2025
5336c95
Revert tox
DylanRussell Sep 9, 2025
0fcdd7b
Merge branch 'main' into add_cred_envvar
DylanRussell Sep 9, 2025
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add changelog
  • Loading branch information
DylanRussell committed Jul 18, 2025
commit 2e76e5990a46ef038ea1ea598094cef2fac87e86
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Overwrite logging.config.fileConfig and logging.config.dictConfig to ensure
the OTLP `LogHandler` remains attached to the root logger. Fix a bug that
can cause a deadlock to occur over `logging._lock` in some cases ([#4636](https://github.com/open-telemetry/opentelemetry-python/pull/4636)).
- Add new environment variables to the SDK `OTEL_PYTHON_EXPORTER_OTLP_{METRICS/TRACES/LOGS}_CREDENTIAL_PROVIDER` that can be used to
inject a `requests.Session` or `grpc.ChannelCredentials` object into exporters created during auto instrumentation.

## Version 1.35.0/0.56b0 (2025-07-11)

Expand Down
Loading