Hi !
My system is giving me two lines Start/Stop in the same index for the use of services. It looks like the following example :
Timestamp1 Start Service1 IDService11
Timestamp2 Start Service1 IDService21
Timestamp3 Stop Service1 IDService21
Timestamp4 Stop Service1 IDService11
I want here to calculate the duration of each IDServices. So I would like to have :
Duration1 : Timestamp4 - Timestamp1
Duration2 : Timestamp3 - Timestamp2
Then, I will have to add all the Duration to know for how long each of my services are used :
TotalDuration = Duration1 + Duration2
The objective is to display a bar chart with the TotalDuration of each Services.
I don't find how to isolate a specific IDService and make the difference between Start and Stop.
I found a lot of topic regarding the comparison of 2 fields from 2 different indexes but nothing on the same field on the same index but for two lines.
Do you have any idea on how to make this ?