Hi I have a data set with 2 different time fields (Start Time and End Time), and 1 count value.
Let Say I have
Start Time - End Time - Count
6.00 - 8.00 - 5
7.00 - 9.00 - 7
8.00 - 10.00 - 3
And I want to display how much is the sum of count during specific time in ELK:
Time - Sum
6.00 - 5
7.00 - 12
8.00 - 15
9.00 - 10
10.00 - 3
How Can I do that? Thanks