Splunk Search

Why am I unable to fetch data by using column names?

gunturu_nagasri
Explorer

Case 1:

index=xyz | rex "(?i)<ticketId>(?P<TICKETID>[^<;]+)"  | stats values(TICKETID) as TICKETID by processname | where TICKETID NOT NULL

TICKET ID - numeric eg : 23517727
processname - string eg : abc

I am trying to fetch TICKET ID details by distinct values of processname using the search above. It displays "no results found".

Case 2:
For the above search, if I remove the where clause, it displays both the processname and TICKETID columns where TICKETID column is empty.

Case 3:

index=xyz | rex "(?i)<ticketId>(?P<TICKETID>[^<]+)"  | stats values(TICKETID) as TICKETID by id | where TICKETID NOT NULL 

id - string eg: 143543337d5ea380261d5b318186dc4a28db9edb0

It gives me the results of distinct values of id with corresponding TICKETID values. I want the case 1 in this format.

-- id is a kind of primary key in this scenario where as processname isn't.

I am new in using splunk. Please do help me asap.

Thanks in advance 🙂

Tags (3)
0 Karma

woodcock
Esteemed Legend

Like this:

Case 1 and 2:

 index=xyz | rex "(?i)<ticketId>(?<TICKETID>[^<;]+)"  | stats values(TICKETID) as TICKETID by processname | where isnotnull(TICKETID)

Case 3:

 index=xyz | rex "(?i)<ticketId>(?<TICKETID>[^<]+)"  | stats values(TICKETID) as TICKETID by id | where isnotnull(TICKETID)
0 Karma

richgalloway
SplunkTrust
SplunkTrust

Please share some sample data so we can put your fields into context.

---
If this reply helps you, Karma would be appreciated.
0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...