<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Field Value is not picking in search interface ?? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Field-Value-is-not-picking-in-search-interface/m-p/70921#M17751</link>
    <description>&lt;P&gt;so perhaps a regex of; &lt;CODE&gt;\_Arm(?&amp;lt;identifier&amp;gt;[^\&amp;lt;]+)\&amp;lt;&lt;/CODE&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 21 Dec 2012 14:12:10 GMT</pubDate>
    <dc:creator>Drainy</dc:creator>
    <dc:date>2012-12-21T14:12:10Z</dc:date>
    <item>
      <title>Field Value is not picking in search interface ??</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Value-is-not-picking-in-search-interface/m-p/70916#M17746</link>
      <description>&lt;P&gt;Hi..&lt;/P&gt;

&lt;P&gt;I have created a field in splunk like this .&lt;/P&gt;

&lt;P&gt;rex"_Arm(?&lt;IDENTIFIER&gt;[a-zA-Z]*)&amp;lt;?"&lt;/IDENTIFIER&gt;&lt;/P&gt;

&lt;P&gt;This Field was successfully created and display in the search results , when i use the top command&lt;BR /&gt;
But when i use in the searchquery direclty the field with value , it is saying 0 results.&lt;/P&gt;

&lt;P&gt;Wat could be the error .Its a strange behvaiour i am exprenceing in splunk after using it for more then 8 months.&lt;/P&gt;

&lt;P&gt;My Query with top which is working .&lt;/P&gt;

&lt;P&gt;sourectype="Mydata" | top Identifier&lt;/P&gt;

&lt;P&gt;My Query with Identifier field which is not working .&lt;/P&gt;

&lt;P&gt;sourcetype="Mydata" Identifier="Start"      (Not working)&lt;/P&gt;

&lt;P&gt;Actually Start, Stop , Resume are the values that come in the field Identifier. Can you pls help ..&lt;/P&gt;

&lt;P&gt;My Sample log event ::&lt;/P&gt;

&lt;P&gt;&lt;MYLOGDATA&gt;&lt;MYLOGDATE&gt;2012-12-21&lt;/MYLOGDATE&gt;&lt;MYLOGTIME&gt;11:42:03.542&lt;/MYLOGTIME&gt;&lt;MYLOGSERVER&gt;NONE&lt;/MYLOGSERVER&gt;IPUB-OR_P3;JMS_ArmStart&lt;/MYLOGDATA&gt;&lt;MYLOGCATEGORY&gt;PEI&lt;/MYLOGCATEGORY&gt;&lt;MYLOGSEVERITY&gt;INFO&lt;/MYLOGSEVERITY&gt;&lt;MYLOGE2EDATA&gt;E2E.busTxnStage=NOT,E2E.compTxnName=P1,E2E.compTxnID=2hfyuwi494,E2E.from=IPUB-OR,E2E.to=MQREP,E2E.aborted=true,E2E.graphID=1.1.1,E2E.threadID=2hfyrk9v02,E2E.busProcType=notify,E2E.busProcOriginator=GS-SMARTS,E2E.threadID.1=:,E2E.busTxnType=MENNotifications,E2E.busTxnHdr=PCK002069,E2E.busTxnSys=GS-S_MENNotifica,E2E.busTxnLoc=UNKNOWN,E2E.busTxnUsr=wbrkadm,E2E.busTxnSeq=2hfyrk9uxp&lt;/MYLOGE2EDATA&gt;&lt;MYLOGTEXT&gt;&lt;/MYLOGTEXT&gt;&lt;MYLOGAPP_CONTEXT&gt;uuid:e55b1572-1c50-11e2-a5ac-0ae6bdb20000#uuid:fc4c0a04-1c58-11e2-a8e7-0ae6bdb20000&lt;/MYLOGAPP_CONTEXT&gt;&lt;MYLOGADDRESS&gt;-&lt;/MYLOGADDRESS&gt;&lt;/P&gt;

&lt;P&gt;whose linecount is 1 .&lt;/P&gt;

&lt;P&gt;can you pls update !! &lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 13:00:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Value-is-not-picking-in-search-interface/m-p/70916#M17746</guid>
      <dc:creator>rakesh_498115</dc:creator>
      <dc:date>2020-09-28T13:00:20Z</dc:date>
    </item>
    <item>
      <title>Re: Field Value is not picking in search interface ??</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Value-is-not-picking-in-search-interface/m-p/70917#M17747</link>
      <description>&lt;P&gt;I'm slightly confused as neither of those searches actually have the rex command included, anyway. At a guess you aren't extracting the identifier before you try to search for it so maybe do something like;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;sourcetype="Mydata" | rex"_Arm(?&amp;lt;identifier&amp;gt;[a-zA-Z]*)&amp;lt;?" | search identifier="Start" | top identifier
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Remember that fieldnames are case sensitive so you need to use a little i as that is what you used in your rex command. This search now pulls all Mydata events, creates an identifier field where it can, filters the list down to just the events with the identifier start and then pulls the top.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Dec 2012 13:19:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Value-is-not-picking-in-search-interface/m-p/70917#M17747</guid>
      <dc:creator>Drainy</dc:creator>
      <dc:date>2012-12-21T13:19:45Z</dc:date>
    </item>
    <item>
      <title>Re: Field Value is not picking in search interface ??</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Value-is-not-picking-in-search-interface/m-p/70918#M17748</link>
      <description>&lt;P&gt;No Actually i have created that field to my sourcetype using fields manager in field extractions...then its not working for me..when i use Identifier="*Start" it is working..&lt;/P&gt;

&lt;P&gt;But not working when i use Identifier="Start" . Actually the value in the Identifier is Start only. i dont understand wats happening here..&lt;/P&gt;</description>
      <pubDate>Fri, 21 Dec 2012 13:28:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Value-is-not-picking-in-search-interface/m-p/70918#M17748</guid>
      <dc:creator>rakesh_498115</dc:creator>
      <dc:date>2012-12-21T13:28:47Z</dc:date>
    </item>
    <item>
      <title>Re: Field Value is not picking in search interface ??</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Value-is-not-picking-in-search-interface/m-p/70919#M17749</link>
      <description>&lt;P&gt;my eventdata linecount for single event is 1 . is that the problem ??&lt;/P&gt;</description>
      <pubDate>Fri, 21 Dec 2012 13:37:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Value-is-not-picking-in-search-interface/m-p/70919#M17749</guid>
      <dc:creator>rakesh_498115</dc:creator>
      <dc:date>2012-12-21T13:37:43Z</dc:date>
    </item>
    <item>
      <title>Re: Field Value is not picking in search interface ??</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Value-is-not-picking-in-search-interface/m-p/70920#M17750</link>
      <description>&lt;P&gt;Could you paste some example log data? it sounds like the regex is pulling in some extra characters you can't see&lt;/P&gt;</description>
      <pubDate>Fri, 21 Dec 2012 13:41:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Value-is-not-picking-in-search-interface/m-p/70920#M17750</guid>
      <dc:creator>Drainy</dc:creator>
      <dc:date>2012-12-21T13:41:08Z</dc:date>
    </item>
    <item>
      <title>Re: Field Value is not picking in search interface ??</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Value-is-not-picking-in-search-interface/m-p/70921#M17751</link>
      <description>&lt;P&gt;so perhaps a regex of; &lt;CODE&gt;\_Arm(?&amp;lt;identifier&amp;gt;[^\&amp;lt;]+)\&amp;lt;&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Dec 2012 14:12:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Value-is-not-picking-in-search-interface/m-p/70921#M17751</guid>
      <dc:creator>Drainy</dc:creator>
      <dc:date>2012-12-21T14:12:10Z</dc:date>
    </item>
    <item>
      <title>Re: Field Value is not picking in search interface ??</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Value-is-not-picking-in-search-interface/m-p/70922#M17752</link>
      <description>&lt;P&gt;Still same problem .. &lt;/P&gt;

&lt;P&gt;used my query likethis &lt;/P&gt;

&lt;P&gt;sourcetype="Mydata" identifier="Start"&lt;/P&gt;</description>
      <pubDate>Fri, 21 Dec 2012 15:08:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Value-is-not-picking-in-search-interface/m-p/70922#M17752</guid>
      <dc:creator>rakesh_498115</dc:creator>
      <dc:date>2012-12-21T15:08:17Z</dc:date>
    </item>
    <item>
      <title>Re: Field Value is not picking in search interface ??</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Value-is-not-picking-in-search-interface/m-p/70923#M17753</link>
      <description>&lt;P&gt;From what I read about your scenario it's very likely that you're affected by the issue that is covered and solved in this blog post: &lt;A href="http://blogs.splunk.com/2011/10/07/cannot-search-based-on-an-extracted-field/"&gt;http://blogs.splunk.com/2011/10/07/cannot-search-based-on-an-extracted-field/&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;NOTE: The blog post says that this is resolved in newer releases but my own testing says otherwise...&lt;/P&gt;</description>
      <pubDate>Fri, 21 Dec 2012 15:44:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Value-is-not-picking-in-search-interface/m-p/70923#M17753</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2012-12-21T15:44:31Z</dc:date>
    </item>
  </channel>
</rss>

