-
Notifications
You must be signed in to change notification settings - Fork 176
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
feat: Generate more telemetry via TelemetryAPI receiver #1230
Open
borchero
wants to merge
43
commits into
open-telemetry:main
Choose a base branch
from
borchero:more-telemetry
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.
Open
Changes from all commits
Commits
Show all changes
43 commits
Select commit
Hold shift + click to select a range
208e682
feat: Extend telemetryapi receiver to collect metrics, logs, and more…
borchero c5116cd
Fix
borchero 6326239
Try
borchero 2606caf
No metrics
borchero 937fbe5
try
borchero f381938
Debug
borchero 5a7184a
Fix
borchero 0efab13
try
borchero d827957
fix?
borchero 7e5d76c
Fix
borchero 8e504b5
Add zeros
borchero a19b48d
Fix timestamps
borchero 20ed49d
Fix?
borchero 8b6d1ef
try without 0
borchero 044f053
Try zero-init
borchero 17b6976
Do not send early
borchero 858a060
No add zero
borchero eae2acf
Try
borchero 6ae04f0
zero-init
borchero 0583116
Better tracing
borchero 23a6c76
Fix
borchero 94036e0
fix
borchero 7458856
Parse logs
borchero c7af04b
Fix gomod
borchero 4180f2b
Tidy
borchero a3665a3
Fixes?
borchero 9e029d0
Debug
borchero 93e9b24
Fix?
borchero 82af051
Fix
borchero f5dc219
fixes
borchero e208e20
Some stuff
borchero 563900a
Debug
borchero 440c40d
Fix
borchero da9e17f
Debug
borchero 3902ff8
Try
borchero b9af0e4
Fix
borchero 0d86b00
No logs
borchero c9d7a67
More attributes
borchero 6c4932a
Remove config
borchero 52b67ff
Try
borchero 53d1d7b
Service instance id
borchero bb6ccd1
Fix?
borchero e55593b
Update docs
borchero 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 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
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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 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 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 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 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.
How does this new component propagate context from the collector to the application?
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.
I'm not sure whether this answers your question but the collector doesn't really pass any context to the application. When the application generates a span A with a parent B that was propagated from an external system, the faas processor identifies span A (by checking for spans with a
faas.invocation_id
) and inserts the Lambda runtime span (let's call it C) between A and B. That means, C becomes parent of A and B becomes parent of C.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.
Thanks, that helps.