-
Notifications
You must be signed in to change notification settings - Fork 706
Add a timeout param to all OTLP grpc / http export calls #4560
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
Closed
Closed
Changes from 2 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
b15f8c8
Add a timeout to export calls
DylanRussell e0cf233
feat: Updated and added examples (logs and metrics) (#4559)
Jayclifford345 1b1e8d8
opentelemetry-sdk: use stable code attributes (#4508)
xrmx adbec50
bugfix(exporter): ensure response is closed (#4477)
codeboten 00329e0
Refactor BatchLogRecordProcessor and associated tests (#4535)
DylanRussell e46db88
infra: Automate SHA procedure during releases (#4547)
emdneto 561f347
Add timeout millis param to export.
DylanRussell 8269f54
Refactor BatchLogRecordProcessor
DylanRussell 072c6bc
build(deps): bump jinja2 (#4534)
dependabot[bot] ea17936
logs: fix serialization of Extended attributes (#4342)
xrmx dae1288
feat: Updated and added examples (logs and metrics) (#4559)
Jayclifford345 4def4ac
opentelemetry-sdk: use stable code attributes (#4508)
xrmx 211c49e
bugfix(exporter): ensure response is closed (#4477)
codeboten 9ee6872
Refactor BatchLogRecordProcessor and associated tests (#4535)
DylanRussell e6ac352
infra: Automate SHA procedure during releases (#4547)
emdneto 9f9c3b1
Refactor BatchLogRecordProcessor
DylanRussell c40c9bf
Add a timeout to export calls
DylanRussell b299c7b
Add timeout millis param to export.
DylanRussell 1233e24
Refactor BatchLogRecordProcessor
DylanRussell ed344a9
Refactor BatchLogRecordProcessor and associated tests (#4535)
DylanRussell 953ad93
Refactor BatchLogRecordProcessor
DylanRussell 0e1be3a
Merge remote-tracking branch 'origin/retry' into retry
DylanRussell 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
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 |
---|---|---|
|
@@ -2,6 +2,7 @@ asgiref==3.7.2 | |
Deprecated==1.2.14 | ||
googleapis-common-protos==1.63.2 | ||
grpcio==1.66.2 | ||
grpcio-status==1.66.0 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should this be added as dev depdency to the package? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's only used for the tests, so I don't think so ? |
||
importlib-metadata==6.11.0 | ||
iniconfig==2.0.0 | ||
packaging==24.0 | ||
|
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.
Shouldn't timeout_millis be Optional[int]?
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 don't feel too strongly about it, I think float or int both are fine.. I switched it to int though