-
Notifications
You must be signed in to change notification settings - Fork 790
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
[otlp] Update README for UseOtlpExporter & new experimental flag #5452
Merged
CodeBlanch
merged 17 commits into
open-telemetry:main
from
CodeBlanch:otlp-exporter-doc-updates
Mar 21, 2024
Merged
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
0c8d633
Update OtlpExporter README for UseOtlpExporter & OTEL_DOTNET_EXPERIME…
CodeBlanch c4e8ee4
Lint.
CodeBlanch 48d300d
Code review.
CodeBlanch a71bc61
Lint.
CodeBlanch 841175e
Add metrics config example.
CodeBlanch 31e6f2f
Code review.
CodeBlanch ba1fac9
Tweaks.
CodeBlanch d5609a9
Code review.
CodeBlanch 9a35880
Tweak.
CodeBlanch 727012a
Code review and tweaks.
CodeBlanch b5d88d1
Lint.
CodeBlanch ae79059
Merge branch 'main' into otlp-exporter-doc-updates
CodeBlanch b21da4b
Code review.
CodeBlanch 452c40b
Lint.
CodeBlanch 2142ecb
Code review.
CodeBlanch 92ed619
Merge remote-tracking branch 'upstream/main' into otlp-exporter-doc-u…
CodeBlanch 8e2e25a
Code review.
CodeBlanch 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
Lint.
- Loading branch information
commit b5d88d1b79e94d1b722b8518c0d214427c052291
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -633,7 +633,7 @@ | |
* All signals | ||
|
||
* `OTEL_DOTNET_EXPERIMENTAL_OTLP_ENABLE_INMEMORY_RETRY` | ||
|
||
Check failure on line 636 in src/OpenTelemetry.Exporter.OpenTelemetryProtocol/README.md GitHub Actions / lint-md / run-markdownlintTrailing spaces
|
||
When set to `true`, it enables in-memory retry for transient errors | ||
encountered while sending telemetry. | ||
|
||
|
@@ -642,7 +642,7 @@ | |
* Logs | ||
|
||
* `OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES` | ||
|
||
When set to `true`, it enables export of `LogRecord.EventId.Id` as | ||
`logrecord.event.id` and `LogRecord.EventId.Name` as `logrecord.event.name`. | ||
CodeBlanch marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
|
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.
@vishweshbankwar I have questions regarding the name - does it mean later there will be something like "OTLP_ENABLE_ONDISK_RETRY
? What's the thinking which leads to the current name instead of
OTEL_DOTNET_EXPERIMENTAL_OTLP_ENABLE_RETRY`?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.
That was the thinking. Wanted to have decoupled experimental environment variables.
When we move to stable, I would like it to be
OTEL_DOTNET_OTLP_ENABLE_RETRY
and define possible values for it likeinmemory
anddisk
.