Splunk Search

How to search for text between 2 tags and exclude all results that have nothing?

skoelpin
SplunkTrust
SplunkTrust

I have this string..

<a:StatusMessage i:nil="true"></a:StatusMessage>

I have millions of these strings which do not have anything between the 2 tags.. Now there are maybe a hundred of those strings that have something between those two tag,s but I don't remember what it was. How can I write a search to exclude all results that have nothing between the 2 tags and include results that have something between the tags?

Example:

I'm looking for something like this where it says EXCEPTION

<a:StatusMessage i:nil="true">EXCEPTION</a:StatusMessage>
Tags (2)
1 Solution

dwaddle
SplunkTrust
SplunkTrust

Let's approach it this way. We'll do a field extraction and then handle it in SPL.

sourcetype=mysourcetype StatusMessage 
| rex "<a:StatusMessage[^>]+>(?<status_message_string>[^<]*)</a:StatusMessage>"
| search status_message_string=*

Using the rex command we make a field extraction for "what appears between the tags, if anything" and name it status_message_string. From there, we can search for any time it has a value.

View solution in original post

0 Karma

dwaddle
SplunkTrust
SplunkTrust

Let's approach it this way. We'll do a field extraction and then handle it in SPL.

sourcetype=mysourcetype StatusMessage 
| rex "<a:StatusMessage[^>]+>(?<status_message_string>[^<]*)</a:StatusMessage>"
| search status_message_string=*

Using the rex command we make a field extraction for "what appears between the tags, if anything" and name it status_message_string. From there, we can search for any time it has a value.

0 Karma
Get Updates on the Splunk Community!

A Season of Skills: New Splunk Courses to Light Up Your Learning Journey

There’s something special about this time of year—maybe it’s the glow of the holidays, maybe it’s the ...

Announcing the Migration of the Splunk Add-on for Microsoft Azure Inputs to ...

Announcing the Migration of the Splunk Add-on for Microsoft Azure Inputs to Officially Supported Splunk ...

Splunk Observability for AI

Don’t miss out on an exciting Tech Talk on Splunk Observability for AI! Discover how Splunk’s agentic AI ...