-
Notifications
You must be signed in to change notification settings - Fork 924
opentelemetry-process-context: implement Resource publishing (OTEP-4719) #5337
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
herin049
wants to merge
42
commits into
open-telemetry:main
Choose a base branch
from
herin049:feat/profiles-context
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+2,603
−27
Open
Changes from all commits
Commits
Show all changes
42 commits
Select commit
Hold shift + click to select a range
fe6122f
add package scaffolding
herin049 05a0a20
add conversion logic
herin049 37f40ac
rework package structure
herin049 b409947
publish/unpublish/update logic
herin049 ed84540
add encoding logic
herin049 c384f9f
update generate-workflows.py
herin049 4d332e0
Merge branch 'main' into feat/profiles-context
herin049 6c3abc7
fix formatting
herin049 3556439
fix codespell issues
herin049 9e50fed
fix test assertions and remove pypy3
herin049 f2031c3
rerun generate-workflows
herin049 5d169fb
remove process context tests from typecheck
herin049 74a1c40
update release workflow
herin049 23f4267
fix workflow bugs
herin049 bd309c2
update maturin action commit pin
herin049 8b4e7b9
small tweak
herin049 1f4e452
small tweak to tests
herin049 47fc876
Merge branch 'main' into feat/profiles-context
herin049 c774c6b
change update logic
herin049 a39dded
update comments
herin049 5e6c845
Update opentelemetry-process-context/pyproject.toml
herin049 66d6e50
combine publish/update into single function
herin049 13deb9e
switch to using protoc bash script for code generation
herin049 5eabeba
Merge branch 'main' into feat/profiles-context
herin049 052906d
Potential fix for pull request finding
herin049 e7902d9
Update import statement for publish_context
herin049 ea143c9
address Copilot comments
herin049 1103446
refactor tests and make implementation fork safe
herin049 c03eb5e
fix pre-commit error
herin049 c9d95f9
Merge branch 'main' into feat/profiles-context
herin049 b21fc4c
update eachdist.ini
herin049 ee9275e
Merge branch 'main' into feat/profiles-context
herin049 9397c1c
small refactor
herin049 9882a89
update workflows
herin049 dd13bba
Merge branch 'main' into feat/profiles-context
herin049 e06d969
fix mmap leak scenario
herin049 48dd8ca
add explicit manifest-path to pyproject.toml
herin049 9edc8e7
Merge branch 'main' into feat/profiles-context
herin049 ae9de41
remove pre/post fork handlers
herin049 891c801
update package README.rst
herin049 8373640
add support for publishing extra attributes
herin049 6209666
update type annotations
herin049 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
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| `opentelemetry-process-context`: implement process context publishing (OTEP-4719) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| [codespell] | ||
| # skipping auto generated folders | ||
| skip = ./.tox,./.mypy_cache,./docs/_build,./target,*/LICENSE,./venv,.git,./opentelemetry-semantic-conventions,*-requirements*.txt | ||
| ignore-words-list = ans,ue,ot,hist,ro,astroid | ||
| skip = ./.tox,./.mypy_cache,./docs/_build,./target,*/LICENSE,./venv,.git,./opentelemetry-semantic-conventions,*-requirements*.txt,./opentelemetry-process-context/rust/target | ||
| ignore-words-list = ans,ue,ot,hist,ro,astroid,crate |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| # This file is not auto-generated. See .github/workflows/templates/ for generated CI files. | ||
|
|
||
| name: Rust | ||
|
|
||
| on: | ||
| workflow_call: | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| fmt-process-context: | ||
| name: cargo fmt (opentelemetry-process-context) | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 10 | ||
| steps: | ||
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | ||
| - name: Update Rust toolchain | ||
| run: rustup update stable && rustup default stable | ||
| - name: cargo fmt | ||
| run: cargo fmt --check --manifest-path opentelemetry-process-context/rust/Cargo.toml | ||
|
|
||
| clippy-process-context: | ||
| name: cargo clippy (opentelemetry-process-context) | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 30 | ||
| steps: | ||
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | ||
| - name: Update Rust toolchain | ||
| run: rustup update stable && rustup default stable | ||
| - name: cargo clippy | ||
| run: cargo clippy --manifest-path opentelemetry-process-context/rust/Cargo.toml -- -D warnings | ||
|
|
||
| test-process-context: | ||
| name: cargo test (opentelemetry-process-context) | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 30 | ||
| steps: | ||
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | ||
| - name: Update Rust toolchain | ||
| run: rustup update stable && rustup default stable | ||
| - name: cargo test | ||
| run: cargo test --manifest-path opentelemetry-process-context/rust/Cargo.toml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does the epbf profiler works on these many platforms? I think it runs on arm64 and amd64 only.