-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
Support pre-aggregated histogram type #52426
Comments
Pinging @elastic/kibana-app (Team:KibanaApp) |
Just for my clarification: As far as I can see, this datatype won't require additional code for aggregations (the aggregation syntax still looks the same), it's just a new field type that needs to be supported? I added the Index pattern label for that, to highlight we first need support for that field type in there. |
Similar to @exekias, I'm wondering what this issue covers? I'm looking for a built in visualization type to show histograms over time, like: |
Per the original issue:
|
@simianhacker do we need to do any changes (except the above) to TSVB to add this type? |
Pinging @elastic/kibana-app-arch (Team:AppArch) |
@sorantis I think that's something the visualization team will take care of for TSVB. |
I am starting to try to use histograms in dashboards, in elastic/beats#17736, and they work nice with visualize, thanks! I look forward to see this feature on TSVB as well. Something I am missing is the possibility of selecting a format in the index pattern. For example I would like to display some values as durations. Is this possible at the moment? |
@jsoriano That's not possible, and we currently don't have any plans to support field formatters generically for histogram field types, given the way field formatters work this would become a bit tricky, since the aggregated format is so different from the "raw value" format (as it's stored in the document), which field formatters currently don't make a difference for. We'd rather wait for support for this in Lens, which has field formatter options on a per visualization level and thus doesn't suffer from that problem. |
Closing as we now support histograms in several places. Support for histograms in Lens is tracked here: #74581 |
ES now supports the pre-aggregated histogram type. elastic/elasticsearch#48580
According to those docs, this type is intended to be used with:
Which we support in the default editor.
Support in:
The text was updated successfully, but these errors were encountered: