Scale numeric values - Kibana

As described here, I want to implement the "rescaling" method in Kibana.
I have a numeric field, which is always >= 0 .
I want it to scale to the range of [0, 1].

It seems:

  • Timelion doesn't support extracting the Maximum bucket / Overall max. Similar to this
  • Kibana Time Series does support Overall Max, but when using a calculation aggregation, I can't use the Overall max aggregation.

Is that correct? If yes, are there any suggested workarounds?
Thanks

I am using Kibana 5.5.2, and I am able to get an Overall Max when using a Calculation aggregation:

Also, just to point out, the Wikipedia article you linked to seems to suggest calculating the scale in a pre-processing step, so it probably wouldn't hurt to originally index the data with a scaled field. :slight_smile:

Actually, I intend to use the Overall Max metric in the Calculation and not the other way around.

Calculating it pre-index time won't work as I need.
That is because the calculation depends on the Overall Max and Overall Min, which depend on the time range you are using.
If I want to be able to easily change the time range I need it calculated every time.

Thanks!

@Eran_H Unfortunately Time Series Visual Builder is limited to the functionality that Elasticsearch provides for the bucket_script (which is what powers the calculation agg in TSVB). We are unable to use sibling aggregations (which is what the overall max aggregation is) in buckets scripts because how of the calculations are processed during the reduce phase.

Thanks Chris. BTW here is a link to a documented issue in the Kibana Github on this: https://github.com/elastic/kibana/issues/12709

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.