Splunk Search

Can you help me with a search involving the NOT and WHERE functions?

jip31
Motivator

Hi,

I use the 2 event types below in a search

eventtype="TotalSpace" OR eventtype="DiskHealthSize" 

I need to do an NOT host=E* for the 2 event types.

Is it enough to do eventtype="TotalSpace" OR eventtype="DiskHealthSize" NOT host=E*, or do I have to do it for the 2 event types??

I have to do also a | where Value <15) but just for the second event type.

I would like to do something like (eventtype="DiskHealthSize" | where Value <15), but it doesn't work....

Finally, I have to do a where Free_Space <15 at the end of the query below but I have no results even if there are events corresponding....

Where do I have to put this piece of code??

  eventtype="TotalSpace" OR eventtype="DiskHealthSize" NOT host=E*
    | eval time = strftime(_time, "%m/%d/%Y %H:%M") 
    | eval Value = round(Value, 1). " %" 
    | eval TotalSpace = TotalSpaceKB/1024 
    | eval TotalSpace = round(TotalSpace/1024,1). " GB" 
    | stats latest(Value) as Free_Space latest(TotalSpace) as TotalSpace by host |  where Free_Space <15

Thanks for helping me please

0 Karma
1 Solution

FrankVl
Ultra Champion

That's a matter of using the correct combination of AND and OR statements and some parentheses to ensure the right criteria are grouped together.

(eventtype="TotalSpace" OR ( eventtype="DiskHealthSize" AND Value <15 ) ) AND NOT host=E*

View solution in original post

0 Karma

FrankVl
Ultra Champion

That's a matter of using the correct combination of AND and OR statements and some parentheses to ensure the right criteria are grouped together.

(eventtype="TotalSpace" OR ( eventtype="DiskHealthSize" AND Value <15 ) ) AND NOT host=E*

0 Karma

jip31
Motivator

Perfect franch thanks

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, ...