-
Notifications
You must be signed in to change notification settings - Fork 38
Attribute limits #4
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
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
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 |
|---|---|---|
| @@ -1,11 +1,58 @@ | ||
| # The file format version | ||
| file_format: "0.1" | ||
|
|
||
| # Configure general attribute limits. See also tracer_provider.span_limits, logger_provider.logrecord_limits. | ||
| attribute_limits: | ||
| # Set the max attribute value size. | ||
| # | ||
| # Environment variable: OTEL_ATTRIBUTE_VALUE_LENGTH_LIMIT | ||
| attribute_value_length_limit: 4096 | ||
| # Set the max attribute count. | ||
| # | ||
| # Environment variable: OTEL_ATTRIBUTE_COUNT_LIMIT | ||
| attribute_count_limit: 128 | ||
|
|
||
| # Configure logger provider. | ||
| logger_provider: {} | ||
| logger_provider: | ||
| # Configure the log record limits. See also attribute_limits. | ||
| logrecord_limits: | ||
| # Set the max log record attribute value size. Overrides attribute_limits.attribute_value_length_limit. | ||
| # | ||
| # Environment variable: OTEL_LOGRECORD_ATTRIBUTE_VALUE_LENGTH_LIMIT | ||
| attribute_value_length_limit: 4096 | ||
| # Set the max log record attribute count. Overrides attribute_limits.attribute_count_limit. | ||
| # | ||
| # Environment variable: OTEL_LOGRECORD_ATTRIBUTE_COUNT_LIMIT | ||
| attribute_count_limit: 128 | ||
|
|
||
| # Configure meter provider. | ||
| meter_provider: {} | ||
|
|
||
| # Configure tracer provider. | ||
| tracer_provider: {} | ||
| tracer_provider: | ||
| # Configure span limits. See also attribute_limits. | ||
| span_limits: | ||
| # Set the max span attribute value size. Overrides attribute_limits.attribute_value_length_limit. | ||
| # | ||
| # Environment variable: OTEL_SPAN_ATTRIBUTE_VALUE_LENGTH_LIMIT | ||
| attribute_value_length_limit: 4096 | ||
| # Set the max span attribute count. Overrides attribute_limits.attribute_count_limit. | ||
| # | ||
| # Environment variable: OTEL_SPAN_ATTRIBUTE_COUNT_LIMIT | ||
| attribute_count_limit: 128 | ||
| # Set the max span event count. | ||
| # | ||
| # Environment variable: OTEL_SPAN_EVENT_COUNT_LIMIT | ||
| event_count_limit: 128 | ||
| # Set the max span link count. | ||
| # | ||
| # Environment variable: OTEL_SPAN_LINK_COUNT_LIMIT | ||
| link_count_limit: 128 | ||
| # Set the max attributes per span event. | ||
| # | ||
| # Environment variable: OTEL_EVENT_ATTRIBUTE_COUNT_LIMIT | ||
| event_attribute_count_limit: 128 | ||
| # Set the max attributes per span link. | ||
| # | ||
| # Environment variable: OTEL_LINK_ATTRIBUTE_COUNT_LIMIT | ||
| link_attribute_count_limit: 128 | ||
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
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.