Hello,
I'm new to Elastic and Kibana, I'm working on log files that contains information about some operations on differents levels, I have a field timestamp that represent time when each operation has occured on each level.
I want to calculate the average time spent on each level to visualize it on Kibana, the problem is I did not find something in the documentation or I didn't chose the correct keyword.
As a reminder I want to calculate the time Average processing time for each step of the operation so I can visualize it on Kibana.
This is an exemple of my logs.
{“log_level”:“INFO”,“timestamp”:“2021-12-22T11:49:06.124890Z”,“event_type”:“step1”,“mid”:“96712abc”}
{“log_level”:“INFO”,“timestamp”:“2021-12-22T11:49:07.124890Z”,“event_type”:“step2”,“mid”:“96712abc”}
{“log_level”:“INFO”,“timestamp”:“2021-12-22T11:49:08.124890Z”,“event_type”:“step3”,“mid”:“96712abc”}