-
Notifications
You must be signed in to change notification settings - Fork 190
Add documentation for OTLP endpoint histogram setting #4406
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
Open
JonasKunz
wants to merge
6
commits into
elastic:main
Choose a base branch
from
JonasKunz:histo-type-setting
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
6 commits
Select commit
Hold shift + click to select a range
1c5e214
Add documentation for OTLP endpoint histogram setting
JonasKunz 9b760d6
Clarified where setting applies
JonasKunz 23244cb
fix anchor
JonasKunz 52c2c23
Update manage-data/data-store/data-streams/tsds-ingest-otlp.md
JonasKunz 90a0a5b
fix docs warnings
JonasKunz 659a472
Next attempt to fix the link
JonasKunz 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 |
|---|---|---|
|
|
@@ -95,6 +95,32 @@ By default, metrics are ingested into the `metrics-generic.otel-default` data st | |
|
|
||
| The target data stream name is constructed as `metrics-${data_stream.dataset}.otel-${data_stream.namespace}`. | ||
|
|
||
| ## Configure histogram handling | ||
| ```{applies_to} | ||
| stack: preview 9.3 | ||
| ``` | ||
|
|
||
| You can configure how OTLP histograms are mapped using the `xpack.otel_data.histogram_field_type` cluster setting. Valid values are: | ||
|
Collaborator
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. this setting should also be documented in the reference (maybe here?)
Author
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. Added it to elastic/elasticsearch#139684. |
||
|
|
||
| - `histogram` (default): Map histograms as T-Digests using the `histogram` field type | ||
| - `exponential_histogram`: Map histograms as exponential histograms using the `exponential_histogram` field type | ||
|
|
||
| The setting is dynamic and can be updated at runtime: | ||
|
|
||
| ```console | ||
| PUT /_cluster/settings | ||
| { | ||
| "persistent" : { | ||
| "xpack.otel_data.histogram_field_type" : "exponential_histogram" | ||
| } | ||
| } | ||
| ``` | ||
|
|
||
| Because both `histogram` and `exponential_histogram` support [coerce](elasticsearch://reference/elasticsearch/mapping-reference/coerce.md), changing this setting dynamically does not risk mapping conflicts or ingestion failures. | ||
|
|
||
| This setting only applies to metrics ingested using the [Elasticsearch OTLP endpoint](./tsds-ingest-otlp.md). | ||
| Documents ingested with the _bulk API (e.g. using the Elasticsearch exporter for the OpenTelemetry Collector) are not affected. | ||
|
|
||
| ## Limitations | ||
|
|
||
| * Only the OTLP metrics endpoint (`/_otlp/v1/metrics`) is supported. | ||
|
|
||
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.
Uh oh!
There was an error while loading. Please reload this page.