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 | I am a number, but when you add ‘G’ to me, I go away. What number am I?

March 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with another ...

What’s New in Splunk App for PCI Compliance 5.3.1?

The Splunk App for PCI Compliance allows customers to extend the power of their existing Splunk solution with ...

Extending Observability Content to Splunk Cloud

Register to join us !   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to ...