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!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...