Hi,
I have a very simple line of trace which indicates the end of a timer that runs at the completion of an important process.
I would like a report that shows what the daily average of the time between the occurrence of this line and the previous run.
Enter function tmr_Elapsed
How would I accomplish this using splunk?
Thanks,
Mike
Use transaction command as you have clear indication of events corresponding to start and stop.
| transaction processID(--unique ID for your events) startswith="started" endswith="completed"
What all fields are available in your data? What all fields your expect in the output?