Dear colleagues.
i have the configuration fluentd, ES, Kibana and amount of data with float and integer values indexed
one simple example for logs i have :
date1 , val1, val2.
date2 , val11, val22.
i have to calculate for each log new value in same database (v1/v2) *100 like below for use in the kibanas visualization this calculated result :
date1 , val1, val2, (val1/val2)*100
date2 , val11, val22 , (val11/val22)*100
i know median average feature of kibana ... but it is not the case for me - i need more flexible calculation (see above example simple formula).
Could you help me to find some method to recalculate my values. Thank you in advance.