Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions exporter/elasticsearchexporter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -607,3 +607,17 @@ This may happen when you use [OTel mapping mode](#otel-mapping-mode) (the defaul

To resolve this, it is recommended to upgrade your Elasticsearch to 8.12+, ideally 8.16+.
Alternatively, try other mapping modes, but the document structure will be different.

### dropping cumulative temporarily histogram
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
### dropping cumulative temporarily histogram
### "dropping cumulative temporality histogram" and "dropping cumulative temporality exponential histogram"

typo: temporality


Symptom: `elasticsearchexporter` logs a warning `dropping cumulative temporarily histogram` similar to:

```
warn [[email protected]](mailto:[email protected])/exporter.go:347 validation errors [service.name](https://service.name/): metrics error: dropping cumulative temporarily histogram http.client.request.duration
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

incorrect formatting with hyperlinks. Can you reproduce an error and just copy from your terminal?

```

This issue occurs because Elasticsearch does not support **cumulative temporality** for histograms.
As a workaround, you can either:
- Export histogram metrics using **delta temporality**, or
- Apply a `cumulativetodelta` processor.
For more details, see [Metrics data ingestion](https://www.elastic.co/docs/reference/opentelemetry/compatibility/limitations#metrics-data-ingestion).
Loading