-
Notifications
You must be signed in to change notification settings - Fork 20
feat(bottlecap): create Inferred Spans baseline + infer API Gateway HTTP spans #405
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
Merged
astuyve
merged 19 commits into
jordan.gonzalez/bottlecap/universal-instrumentation
from
jordan.gonzalez/bottlecap/add-inferred-spans
Oct 9, 2024
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
a03aa6e
add `thiserror` and `lazystatic`
duncanista 4f7947f
add Span/Trace `context`
duncanista 48dcac3
update `mod.rs`
duncanista a46f6a2
add `propagation` module
duncanista fe353ca
add `propagation::Error`
duncanista 964d663
add interface for `carrier` and `HashMap` implementation
duncanista 59fda72
add `text_map_propagator`
duncanista d7859a6
update `LICENSE-3rdparty.yml`
duncanista 801e5a8
Merge branch 'jordan.gonzalez/bottlecap/universal-instrumentation' in…
duncanista b7a68b1
add `Trigger` trait for inferred spans
duncanista beb5bbe
add `ApiGatewayHttpEvent` trigger
duncanista 0dc5c13
add `SpanInferrer`
duncanista 291b63d
make `invocation::processor` to use `SpanInferrer`
duncanista 27a886b
send `aws_config` to `invocation::processor`
duncanista fffcfac
use incoming payload for `invocation::processor` for span inferring
duncanista 9e31ecc
add `api_gateway_http_event.json` for testing
duncanista c1e9950
add `api_gateway_proxy_event.json` for testing
duncanista 8eb9af6
fix: Convert tag hashmap to sorted vector of tags
astuyve 06ace37
fix: fmt
astuyve 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
|---|---|---|
| @@ -1,2 +1,4 @@ | ||
| pub mod context; | ||
| pub mod processor; | ||
| pub mod span_inferrer; | ||
| pub mod triggers; |
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.
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.
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.
Do we need to add clone trait here?
I thought the configs were immutable and passed as ref/Arc everywhere