Splunk Dev

remove unwanted records from output

avi123
Explorer

Expected Output:

Ticket ID   Priority   Status

1234           P1            Closed

5678

 

8765            P2            Closed

Labels (1)
0 Karma

deepakc
Builder

It would be better to give us some more context - its helps with trying to help and answer you question.

I guess you are trying to remove / filter out some data?

This is just guessing on what you maybe wanting to do.

This is an example using make results, this filters the ticket_id=5678 (so apply same princples for your code) 

| makeresults | eval _raw="ticket_id, priority,status
123,P1,Closed
5678,,
8765,P2,Closed"
| multikv forceheader=1
| search ticket_id!=5678
| table ticket_id, priority, status
0 Karma
Get Updates on the Splunk Community!

Enter the Dashboard Challenge and Watch the .conf24 Global Broadcast!

The Splunk Community Dashboard Challenge is still happening, and it's not too late to enter for the week of ...

Join Us at the Builder Bar at .conf24 – Empowering Innovation and Collaboration

What is the Builder Bar? The Builder Bar is more than just a place; it's a hub of creativity, collaboration, ...

Combine Multiline Logs into a Single Event with SOCK - a Guide for Advanced Users

This article is the continuation of the “Combine multiline logs into a single event with SOCK - a step-by-step ...