Hello everyone,
I'm trying to get an analysis of an process log file. The logfile contains an event for every ended process. This Event contains the following data:
Process ID, Starttime, Endtime, bytes_transferred
Now I want to build a timechart for bytes transferred. But I do not want to show the bytes at a single point of time when the process ended. The bytes_transferred should be split up to the interval, the process takes place.
I calculated the duration of the processes and the bytes_per_second of the processes. Now i want to write down a row for each second a process was running with the corresponding calculated timestamp (start_time+1, start_time+2, start_time+2,...., start_time+duration).
How can I do this with Splunk?
Thank you
... View more