Kibana 7.12.0 add Enrich pipeline

Hi,
I want to calculate the value of a field in index A.

  1. Its data comes from two other index fields, index B and index C.

  2. Calculation formula: index A.count = index B.count - index C.count.

  3. Condition: index A.time = index B.time, index B.time = index C.time.

Can it be achieved? Or any suggestions? :slightly_smiling_face:

Hi
What's not clear to me is: Are you speaking of 1 index, or are this multiple indices?

Best,
Matthias

Hi
They are multiple indexes.

For this case you would need to build you own custom tool, merging the data and ingesting it into a new index in Elasticsearch

Oh, maybe you could use the ingest pipeline enrich processor for that:

Hi
Arithmetic operators do not seem to be supported.

In 7.14 you can achieve this using lens formulas. Any plan to update?