Splunk Search

Need help on timechart with value

jackin
Path Finder

Hi,

Here's my query -

| mstats max(_value) avg(_value) min(_value) prestats=true WHERE metric_name="cpu.system" AND"index"="osnixperf" AND 
[| inputlookup Unix.csv] BY host span=1h
| stats Avg(_value) AS Avg1 BY host
| join
[| mstats max(_value) avg(_value) min(_value) prestats=true WHERE metric_name="cpu.user" AND"index"="osnixperf" AND
[| inputlookup Unix.csv] BY host span=1h
| stats Avg(_value) AS Avg2 BY host]
| eval totalavg=Avg1+Avg2,totalavg=round(totalavg,2)

I need the timechart that shows with totalavg value like below image. 

jackin_0-1635926340469.png

 

Labels (2)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Your stats commands are removing the time element from your results - try something like this

| mstats max(_value) avg(_value) AS Avg1 min(_value) prestats=true WHERE metric_name="cpu.system" AND"index"="osnixperf" AND 
[| inputlookup Unix.csv] BY host span=1h 
| join 
[| mstats max(_value) avg(_value) AS Avg2 min(_value) prestats=true WHERE metric_name="cpu.user" AND"index"="osnixperf" AND 
[| inputlookup Unix.csv] BY host span=1h 
| eval totalavg=Avg1+Avg2,totalavg=round(totalavg,2)
0 Karma

jackin
Path Finder

@ITWhisperer Hi,

Its looks as working but but it not showing any values and error msg's
can you give me any suggestions to my query OR can you help any different way to calculate the  2 metrics.

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

OK start with the first mstats - does this give you what you expect from just that index?

Then try the second mstats separately - does this give you what you expect from just that index?

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Why Splunk Customers Should Attend Cisco Live 2026 Las Vegas

Why Splunk Customers Should Attend Cisco Live 2026 Las Vegas     Cisco Live 2026 is almost here, and this ...

What Is the Name of the USB Key Inserted by Bob Smith? (BOTS Hint, Not the Answer)

Hello Splunkers,   So you searched, “what is the name of the usb key inserted by bob smith?”  Not gonna lie… ...

Automating Threat Operations and Threat Hunting with Recorded Future

    Automating Threat Operations and Threat Hunting with Recorded Future June 29, 2026 | Register   Is your ...