Splunk Search

Splunk query help - CPU Load - Need to change query for negative values

splunker9999
Path Finder

Hi,

We have splunk query to find CPU load like

| eval pctCPULoad=round(100 - pctIdle,2) , and we used condition if value >=95 to trigger an alert.

Here,in our case pctIdle value we have is "195",hence we are getting pctCPULoad as "-95"

Although it is -95 we are getting alerts as this is considering as 95?

Can someone help?

Thanks

Tags (1)
0 Karma
1 Solution

javiergn
Super Champion

Why don't you do it this way as having a computer idle more than 100% of the time does make too much sense?

| eval pctCPULoad=if(pctIdle >= 100, 0, round(100 - pctIdle,2))

View solution in original post

0 Karma

javiergn
Super Champion

Why don't you do it this way as having a computer idle more than 100% of the time does make too much sense?

| eval pctCPULoad=if(pctIdle >= 100, 0, round(100 - pctIdle,2))
0 Karma

splunker9999
Path Finder

Nice thought. Will do

0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...