Splunk Search

How to put _time to x axis in line chart on per hour basis?

josefa123
Explorer

Here is my search manager:

var search1 = new SearchManager({
            id: "rtCPUDaySearch",
            earliest_time: "rt-24h",
            latest_time: "rt",
            autostart: true,
            search: host="AAAAAAAAAAAAAAAAA"| bin _time span=2m | stats first(pctSystem) by _time | sort -_time',
            preview: true,
            cache: false
        });

Here is my chart view:

new ChartView({
            id: "element2",
            managerid: "rtCPUDaySearch",
            type: "line",
            "charting.legend.placement": "bottom",
            el: $("#myLineChart")
        }).render();

Here is the result:

alt text

0 Karma
1 Solution

jeffland
SplunkTrust
SplunkTrust

This is determined by the search you run. You have two options here: either you bucket _time in hour buckets, or (and I would recommend this) you use timechart instead of bucketing and stats. Your search would look like this with timechart:

host="AAAAAAAAAAAAAAAAA"| timechart span=1h first(pctSystem)

Or like this with bucket:

host="AAAAAAAAAAAAAAAAA"| bin _time span=1h | stats first(pctSystem) by _time | sort -_time

View solution in original post

jeffland
SplunkTrust
SplunkTrust

This is determined by the search you run. You have two options here: either you bucket _time in hour buckets, or (and I would recommend this) you use timechart instead of bucketing and stats. Your search would look like this with timechart:

host="AAAAAAAAAAAAAAAAA"| timechart span=1h first(pctSystem)

Or like this with bucket:

host="AAAAAAAAAAAAAAAAA"| bin _time span=1h | stats first(pctSystem) by _time | sort -_time
Get Updates on the Splunk Community!

Index This | Why did the turkey cross the road?

November 2025 Edition  Hayyy Splunk Education Enthusiasts and the Eternally Curious!   We’re back with this ...

Enter the Agentic Era with Splunk AI Assistant for SPL 1.4

  🚀 Your data just got a serious AI upgrade — are you ready? Say hello to the Agentic Era with the ...

Feel the Splunk Love: Real Stories from Real Customers

Hello Splunk Community,    What’s the best part of hearing how our customers use Splunk? Easy: the positive ...