Kibana - can visualize a field that we multiply by a fixed value?

I did a visualization with a field but I would like to visualize it multiplied (or divised) by a fixed value.
Is it possible ?
Thanks for your help

Depending on what you are doing exactly, scripted fields are probably an easy way to do this: Scripted fields | Kibana Guide [7.12] | Elastic

You can use them to specify a new field on your index pattern, which is always a multiple of the original field, then build your visualization using that field.

Thanks, I will do that

I finally succeed by adding into the visualization > Data > Y axis > Advanced :
{"script":"_value*my_fixed_variable"}

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