Yes, there is a couple of ways you can do this. Note that your timestamp gets put into a field called _time.
If you want to use average figures over a timerange, you can use the timechart function. Eg:
search command | timechart avg(pageLoadSeconds) as AvgPageLoadTime
If for some reason you want to graph the raw values of pageLoadSeconds, you can just create a table with the values you want, eg:
search command | table _time, pageLoadSeconds
Note, the graphs in Splunk will only plot up to 1000 events, so if you use the table option you won't be able to do it over a lot of data. It's recommended to use timechart.
Either of these can be used to populate a Splunk graph.
Cheers,
Herbie.
... View more