Splunk Search

How to use rex in searchTemplate while creating forms

Anvita
Explorer

How to use rex in searchTemplate while form creation? When i try to use following search using rex, it gives me "Invalid xml" error.

<row>
    <single>
      <title>Total Logged in users across all states</title>      
      <searchTemplate> sourcetype=test1 "https://test1.com:999/t2/t3/*/home;sid=" | rex "https://test1.com:999/t2/t3/(?<statename>.*)/home" |  eval state=upper(statename) | lookup state_abbr state AS state OUTPUTNEW name AS name  | eval State=upper(name) | stats dc(sid) AS "Logged in Users"  by State </searchTemplate>
    </single>
</row>

statename is a dynamic variable I am creating which will be then applied on lookup to retrieve actual state name as data contains only the abbreviations of states(statename is abbreviation and name is actual state in lookup file). When I use it in search, it performs well but when used in form's searchTemplate, it throws an error.

Tags (1)
1 Solution

ziegfried
Influencer

You have to either escape the XML characters (<=&lt; >=&gt; &=&amp;) within you search:

  <searchTemplate> sourcetype=test1 "https://test1.com:999/t2/t3/*/home;sid=" | rex "https://test1.com:999/t2/t3/(?&lt;statename&gt;.*)/home" |  eval state=upper(statename) | lookup state_abbr state AS state OUTPUTNEW name AS name  | eval State=upper(name) | stats dc(sid) AS "Logged in Users"  by State </searchTemplate>

or put it into CDATA:

  <searchTemplate><![CDATA[ sourcetype=test1 "https://test1.com:999/t2/t3/*/home;sid=" | rex "https://test1.com:999/t2/t3/(?<statename>.*)/home" |  eval state=upper(statename) | lookup state_abbr state AS state OUTPUTNEW name AS name  | eval State=upper(name) | stats dc(sid) AS "Logged in Users"  by State ]]></searchTemplate>

View solution in original post

ziegfried
Influencer

You have to either escape the XML characters (<=&lt; >=&gt; &=&amp;) within you search:

  <searchTemplate> sourcetype=test1 "https://test1.com:999/t2/t3/*/home;sid=" | rex "https://test1.com:999/t2/t3/(?&lt;statename&gt;.*)/home" |  eval state=upper(statename) | lookup state_abbr state AS state OUTPUTNEW name AS name  | eval State=upper(name) | stats dc(sid) AS "Logged in Users"  by State </searchTemplate>

or put it into CDATA:

  <searchTemplate><![CDATA[ sourcetype=test1 "https://test1.com:999/t2/t3/*/home;sid=" | rex "https://test1.com:999/t2/t3/(?<statename>.*)/home" |  eval state=upper(statename) | lookup state_abbr state AS state OUTPUTNEW name AS name  | eval State=upper(name) | stats dc(sid) AS "Logged in Users"  by State ]]></searchTemplate>

Anvita
Explorer

Thank you so much ziegfried... It really works...

0 Karma
Get Updates on the Splunk Community!

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

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...