I would like to create a timeline view that shows the begin/end time of every event for a given transaction. The transaction is a series of automated/asynchronous processes that run from a single CreateJob request. I want essentially see a bar chart of the events where the x-axis is the "wall clock" and the y-axis is a list of events.
For each event, we have the following data points:
transactionId => links all the different events together
actionName => the name of the event that is being logged
beginTime
endTime
Sample Data:
What I would like to do is to build a timeline dashboard visualization that has the "wall clock" as the x-axis, each event as a line on the y-axis and then a bar for each event that plots the beginning of the bar as when the event started, the end of the bar as when it ended. This way I could see what all is happening in parallel and which events are the "long pole".
Here is an example of what I am looking for:
https://images.template.net/wp-content/uploads/2015/07/Timeline-Chart-With-Overlapping-Event-Excel-D...
[unfortunately, I am new, so I may not be able to put the image right in here]
The difference is that in my chart, i would have the following from my sample data:
y-axis:
- CreateJob
- retrieveItem
- storeFile
- ConcludeJob
x-axis:
- Hour:Minute:Second.millisecond
Thanks!
@eplate try out the Timeline Custom Visualization
Thanks - I will see if the admin will install this for me and then try it out. It looks exactly like what I need.