I have created one table control in kibana visualization. The table has three column.
I want to create fourth column which will be having row wise % of 3rd column value.
Ex. 44.4 is 40.3% of 100.8
Ex. 11.8 is 10.7% of 100.8
I have created one table control in kibana visualization. The table has three column.
I want to create fourth column which will be having row wise % of 3rd column value.
Ex. 44.4 is 40.3% of 100.8
Ex. 11.8 is 10.7% of 100.8
Hi @jyoti_panse
I think you can reproduce that with Lens formula with something like:
myMetric() / overall_sum(myMetric())
I've used myMetric
here as a generic reference to any metric formula (i.e. count()
, or even stuff more complex like (sum(...) + sum(...))
. The important bit is the additional part: / overall_sum( <place the same metric here> )
.
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.
© 2020. All Rights Reserved - Elasticsearch
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant logo are trademarks of the Apache Software Foundation in the United States and/or other countries.