Splunk Search

Is there a way to do a NOT IN search

riotto
Path Finder

something like;

[search index= myindex source=server.log earliest=-360 latest=-60 "

0 Karma
1 Solution

somesoni2
Revered Legend

Try like this

index="idx" source="server.log" earliest=-360 latest=-60 "<Request" | xmlkv | fields clientId | search NOT
 [search  index="idx" source="server.log" earliest=-360 latest=now "<Response" | xmlkv | stats count by clientId |table clientId]

View solution in original post

0 Karma

malvidin
Communicator

I would recommend using an eventstats command to exclude 

index="idx" earliest=-360s latest=-0s source="server.log"  "<Request" 
| xmlkv 
| eventstats earliest_time(clientId) as earliest_clientId by clientId
| where relative_time(now(), "-60s") > earliest_clientId
|`enter code here`

 

0 Karma

somesoni2
Revered Legend

Try like this

index="idx" source="server.log" earliest=-360 latest=-60 "<Request" | xmlkv | fields clientId | search NOT
 [search  index="idx" source="server.log" earliest=-360 latest=now "<Response" | xmlkv | stats count by clientId |table clientId]
0 Karma

riotto
Path Finder

it works! Thanks much

0 Karma

cmerriman
Super Champion

are you trying to search for everything EXCEPT search index= myindex source=server.log earliest=-360 latest=-60

riotto
Path Finder

No, something like
earliest=-360 latest=-60 "

0 Karma

riotto
Path Finder

can't paste my example?

0 Karma

riotto
Path Finder

it's cutting off my example sorry

0 Karma

cmerriman
Super Champion

when pasting your example, highlight the syntax and click on the little '101 010' icon above the texbox

riotto
Path Finder
[search index="idx" source="server.log" earliest=-360 latest=-60 "<Request" | xmlkv | fields clientId]
NOT IN
[search  index="idx" source="server.log" earliest=-360 latest=now "<Response" | xmlkv | fields clientId]`enter code here`
0 Karma

ppablo
Retired

@riotto

Can you give more details on what you're looking for with expected results? It's hard just figuring this out with only a search. People need more context here other than the same search you put in the content of your question.

0 Karma
Get Updates on the Splunk Community!

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

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...