<?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: Why are my searches not returning any events unless I use a wildcard? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Why-are-my-searches-not-returning-any-events-unless-I-use-a/m-p/186936#M53850</link>
    <description>&lt;P&gt;yes it returns the same result as doing it without the quotes.&lt;/P&gt;</description>
    <pubDate>Tue, 17 Mar 2015 19:31:40 GMT</pubDate>
    <dc:creator>rgoody</dc:creator>
    <dc:date>2015-03-17T19:31:40Z</dc:date>
    <item>
      <title>Why are my searches not returning any events unless I use a wildcard?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-are-my-searches-not-returning-any-events-unless-I-use-a/m-p/186931#M53845</link>
      <description>&lt;P&gt;Have source from cisco:asa with a field value of user. &lt;/P&gt;

&lt;P&gt;The following search(s) will return all values for user:&lt;BR /&gt;
(This search for example would return 30 events with a user value in 100%)&lt;BR /&gt;
&lt;STRONG&gt;sourcetype=cisco:asa message_id=722051&lt;/STRONG&gt;&lt;BR /&gt;
(This search for example would return 30 events with a user value in 100%)&lt;BR /&gt;&lt;BR /&gt;
&lt;STRONG&gt;sourcetype=cisco:asa message_id=722051 user=&lt;/STRONG&gt;*&lt;/P&gt;

&lt;P&gt;If I attempt to get more specific on the user value like below, no results are found even though its found in the above search:&lt;BR /&gt;
&lt;STRONG&gt;sourcetype=cisco:asa message_id=722051 user=testuser1234&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;If I attempt this search events are also returned:&lt;BR /&gt;
&lt;STRONG&gt;sourcetype=cisco:asa message_id=722051 user=testuser&lt;/STRONG&gt;*&lt;BR /&gt;
or&lt;BR /&gt;
&lt;STRONG&gt;sourcetype=cisco:asa message_id=722051 user=test*1234&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;So as long as my user= contains a wildcard results are found.  What could be causing this issue?&lt;/P&gt;</description>
      <pubDate>Mon, 16 Mar 2015 18:06:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-are-my-searches-not-returning-any-events-unless-I-use-a/m-p/186931#M53845</guid>
      <dc:creator>rgoody</dc:creator>
      <dc:date>2015-03-16T18:06:51Z</dc:date>
    </item>
    <item>
      <title>Re: Why are my searches not returning any events unless I use a wildcard?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-are-my-searches-not-returning-any-events-unless-I-use-a/m-p/186932#M53846</link>
      <description>&lt;P&gt;Are you sure you don't have any special characters in the "user" field values that might be throwing off the comparison for you? &lt;/P&gt;

&lt;P&gt;Try this, on the left side of your search screen there should be a list of "interesting fields". Expand the "user" field and select the value that you are looking for. This should add the filter to your search with the exact user value.&lt;/P&gt;

&lt;P&gt;Hope this helps&lt;/P&gt;</description>
      <pubDate>Mon, 16 Mar 2015 19:13:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-are-my-searches-not-returning-any-events-unless-I-use-a/m-p/186932#M53846</guid>
      <dc:creator>aholzer</dc:creator>
      <dc:date>2015-03-16T19:13:18Z</dc:date>
    </item>
    <item>
      <title>Re: Why are my searches not returning any events unless I use a wildcard?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-are-my-searches-not-returning-any-events-unless-I-use-a/m-p/186933#M53847</link>
      <description>&lt;P&gt;Hi, have you try with doublequote:&lt;BR /&gt;
user="testuser1234"&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2015 11:43:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-are-my-searches-not-returning-any-events-unless-I-use-a/m-p/186933#M53847</guid>
      <dc:creator>btt</dc:creator>
      <dc:date>2015-03-17T11:43:33Z</dc:date>
    </item>
    <item>
      <title>Re: Why are my searches not returning any events unless I use a wildcard?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-are-my-searches-not-returning-any-events-unless-I-use-a/m-p/186934#M53848</link>
      <description>&lt;P&gt;this search: &lt;CODE&gt;sourcetype=cisco:asa message_id=722051 user=testuser1234&lt;/CODE&gt;  is very good &lt;BR /&gt;
and retuned you events which sourcetype=cisco:asa ; message_id=722051 and  user=testuser1234 &lt;BR /&gt;
 if no results are found even though its found in the above search then,&lt;BR /&gt;
 you don't have a USER where  &lt;STRONG&gt;user=testuser1234&lt;/STRONG&gt; simply in your data or events. or you don't write fine user value in your events.&lt;BR /&gt;
if you want try this search to understand fine : &lt;CODE&gt;sourcetype=cisco:asa message_id=722051 NOT(user=testuser1234)&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;sorry for my english.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 19:10:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-are-my-searches-not-returning-any-events-unless-I-use-a/m-p/186934#M53848</guid>
      <dc:creator>fdi01</dc:creator>
      <dc:date>2020-09-28T19:10:26Z</dc:date>
    </item>
    <item>
      <title>Re: Why are my searches not returning any events unless I use a wildcard?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-are-my-searches-not-returning-any-events-unless-I-use-a/m-p/186935#M53849</link>
      <description>&lt;P&gt;so when I do the search sourcetype=cisco:asa message_id=722051 and click on the user field it will show 32 events for say user testuser1234 then when I click to add that user to the search it will then only show 19 events.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2015 19:30:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-are-my-searches-not-returning-any-events-unless-I-use-a/m-p/186935#M53849</guid>
      <dc:creator>rgoody</dc:creator>
      <dc:date>2015-03-17T19:30:59Z</dc:date>
    </item>
    <item>
      <title>Re: Why are my searches not returning any events unless I use a wildcard?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-are-my-searches-not-returning-any-events-unless-I-use-a/m-p/186936#M53850</link>
      <description>&lt;P&gt;yes it returns the same result as doing it without the quotes.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2015 19:31:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-are-my-searches-not-returning-any-events-unless-I-use-a/m-p/186936#M53850</guid>
      <dc:creator>rgoody</dc:creator>
      <dc:date>2015-03-17T19:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: Why are my searches not returning any events unless I use a wildcard?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-are-my-searches-not-returning-any-events-unless-I-use-a/m-p/186937#M53851</link>
      <description>&lt;P&gt;That would be because only 19 of your original 32 events have that particular user in them. This sounds like the intended behavior. What are you expecting?&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2015 19:48:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-are-my-searches-not-returning-any-events-unless-I-use-a/m-p/186937#M53851</guid>
      <dc:creator>aholzer</dc:creator>
      <dc:date>2015-03-17T19:48:53Z</dc:date>
    </item>
    <item>
      <title>Re: Why are my searches not returning any events unless I use a wildcard?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-are-my-searches-not-returning-any-events-unless-I-use-a/m-p/186938#M53852</link>
      <description>&lt;P&gt;No because if I just look at those same events without filter by user=testuser1234 all events have the user field in them with the user value of testuser1234.&lt;/P&gt;

&lt;P&gt;So for example if testuser1234 logs-in the event is created and I can see the event with the user field and a value of testuser1234 but If I filter the search using user=testuser1234 that event is not found unless I filter with a wildcard such as user=test* or any other filter with a wildcard.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2015 19:53:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-are-my-searches-not-returning-any-events-unless-I-use-a/m-p/186938#M53852</guid>
      <dc:creator>rgoody</dc:creator>
      <dc:date>2015-03-17T19:53:42Z</dc:date>
    </item>
    <item>
      <title>Re: Why are my searches not returning any events unless I use a wildcard?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-are-my-searches-not-returning-any-events-unless-I-use-a/m-p/186939#M53853</link>
      <description>&lt;P&gt;Let me get this straight.&lt;/P&gt;

&lt;P&gt;When you run it with the user=test* you get 32 events, if you click the "user" field on the left "interesting fields" you get an entry for user="testuser1234" and a count of 32. But, when you click on said user to add the filter to your search, you then only receive 19 events in your results. Is this correct?&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2015 19:57:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-are-my-searches-not-returning-any-events-unless-I-use-a/m-p/186939#M53853</guid>
      <dc:creator>aholzer</dc:creator>
      <dc:date>2015-03-17T19:57:38Z</dc:date>
    </item>
    <item>
      <title>Re: Why are my searches not returning any events unless I use a wildcard?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-are-my-searches-not-returning-any-events-unless-I-use-a/m-p/186940#M53854</link>
      <description>&lt;P&gt;Is your user field a mv (multi-value) field, by any chance?&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2015 19:59:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-are-my-searches-not-returning-any-events-unless-I-use-a/m-p/186940#M53854</guid>
      <dc:creator>aholzer</dc:creator>
      <dc:date>2015-03-17T19:59:02Z</dc:date>
    </item>
    <item>
      <title>Re: Why are my searches not returning any events unless I use a wildcard?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-are-my-searches-not-returning-any-events-unless-I-use-a/m-p/186941#M53855</link>
      <description>&lt;P&gt;Yes that is correct, no it is not a multi-value field&lt;/P&gt;</description>
      <pubDate>Thu, 19 Mar 2015 20:09:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-are-my-searches-not-returning-any-events-unless-I-use-a/m-p/186941#M53855</guid>
      <dc:creator>rgoody</dc:creator>
      <dc:date>2015-03-19T20:09:52Z</dc:date>
    </item>
  </channel>
</rss>

