I should like to gnuplot some data for various devices, where the data is the time those devices are in a certain state.
For example, given devices a to e, plot the time they go into alarm then exit, e.g. device a goes into alarm 11:00, out of alarm at 12:00, etc..
dev_a | x------x
dev_b | x-----x
dev_c | x-x
dev_d | x-------------------
dev_e | x-----x x-----x
|_______________________________
| | | | |
11:00 12:00 13:00 14:00 15:00
The input data would would need to be derived from logs similar to:
....
11:00 dev_a alarm on
....
11:00 dev_c alarm off
11:10 dev_b alarm on
....
12:00 dev_a alarm off
....
I am not really sure how to get started—a column plot of sorts?