Getting Data In

When trying to filter "new" incidents, how do I get all results not just reolved?

NizanCohen
Explorer

Hi.

I work with ServiceNow, a ticketing platform. 

I wish to get only the current "new" incidents and display it in a dashboard, but when I put "| search status=New" I get results which turned "resolved" already.

Is there a way I can display only the current new incidents?

Labels (1)
Tags (1)
0 Karma
1 Solution

kamlesh_vaghela
SplunkTrust
SplunkTrust

@NizanCohen 

Can you please try this?

index=YOUR_INDEX OTHER_SEARCH_TERMS_IN_CASE
| dedup INCIDENT_FIELD_NAME
| rename comment as "dedup for fetching latest incident event"
| search status=New
| table YOUR_REQUIRED_FIELDS

 

In case you still face issues then please share some sample data with INCIDENT_FIELD_NAME and the status field.

I hope this will help you.

Thanks
KV
If any of my replies help you to solve the problem Or gain knowledge, an upvote would be appreciated.

 

View solution in original post

0 Karma

kamlesh_vaghela
SplunkTrust
SplunkTrust

@NizanCohen 

Can you please try this?

index=YOUR_INDEX OTHER_SEARCH_TERMS_IN_CASE
| dedup INCIDENT_FIELD_NAME
| rename comment as "dedup for fetching latest incident event"
| search status=New
| table YOUR_REQUIRED_FIELDS

 

In case you still face issues then please share some sample data with INCIDENT_FIELD_NAME and the status field.

I hope this will help you.

Thanks
KV
If any of my replies help you to solve the problem Or gain knowledge, an upvote would be appreciated.

 

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...