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!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...