So, I'm new to Kibana, and data visualization in general, but we are in need of being able to track and visualize usage/utilization in our computer labs.
I have records being collected that indicate, for each computer, the session id, user, and action (start/stop) and time.
So it looks something like:
Time Action ComputerName SessionID Username
February 28th 2020, 08:02:51.000 added computer-09 46613 user1
February 27th 2020, 17:04:59.000 removed computer-09 53706 user1
February 27th 2020, 14:35:56.000 added computer-01 52879 user2
February 27th 2020, 13:20:16.000 removed computer-01 124 user2
February 27th 2020, 12:39:24.000 added computer-01 124 user2
February 27th 2020, 12:38:51.000 added computer-09 53706 user1
February 27th 2020, 12:33:44.000 added computer-07 189 user3
But I'm having trouble wrapping my head around how I get those to be used together, and how I would use them to do something like a line graph for "Average Utilization Per Day".
Any help is appreciated. Even just basic concepts, direction, or resource recommendations!