<?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: Particular sourcetype not appearing in search in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Particular-sourcetype-not-appearing-in-search/m-p/753013#M119544</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/95660"&gt;@JyPl4wNYu7GV1uL&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your sort command introduced a limit of 10,000 events which could potentially have meant that you had no data for the sourcetype&amp;nbsp; containing "myString"&lt;/P&gt;&lt;P&gt;Removing the sort means that your results are not limited to 10,000 events.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":glowing_star:"&gt;🌟&lt;/span&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Did this answer help you?&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;If so, please consider:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Adding karma to show it was useful&lt;/LI&gt;&lt;LI&gt;Marking it as the solution if it resolved your issue&lt;/LI&gt;&lt;LI&gt;Commenting if you need any clarification&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Your feedback encourages the volunteers in this community to continue contributing&lt;/P&gt;</description>
    <pubDate>Fri, 12 Sep 2025 14:10:18 GMT</pubDate>
    <dc:creator>livehybrid</dc:creator>
    <dc:date>2025-09-12T14:10:18Z</dc:date>
    <item>
      <title>Particular sourcetype not appearing in search</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Particular-sourcetype-not-appearing-in-search/m-p/752982#M119535</link>
      <description>&lt;P&gt;CentOS 7.7.1908,&amp;nbsp;Splunk&amp;nbsp; v9.1.0.2&lt;/P&gt;&lt;P&gt;I want to get an example event for each sourcetype on each host (excluding one host).&amp;nbsp; This is my search:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=prefix_* host!="NotThisHost" sourcetype=*
| sort - _time
| dedup 1 host, sourcetype
| table host, sourcetype, _time, _raw&lt;/LI-CODE&gt;&lt;P&gt;I run this for the period "yesterday."&lt;/P&gt;&lt;P&gt;This all works, but I'm not getting a result for a particular sourcetype which has "myString" in the sourcetype name.&lt;/P&gt;&lt;P&gt;If I rerun the exact same search with:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=prefix_* host!="NotThisHost" sourcetype=*myString*
| sort - _time
| dedup 1 host, sourcetype
| table host, sourcetype, _time, _raw&lt;/LI-CODE&gt;&lt;P&gt;I do get the expected results for the sourcetype with "myString" in the sourcetype name.&amp;nbsp; So, the only change is to zero in the sourcetype with the "myString" in the sourcetype name.&amp;nbsp; I'm stumped.&amp;nbsp; I'm an admin user, so I have all the permissions.&amp;nbsp; I had another admin user try the same 2 searches and they saw the same behavior where the sourcetype with "myString" in the sourcetype name was not in the first search, but appeared in the second.&lt;/P&gt;&lt;P&gt;Not much help on the web with the Google AI or without.&amp;nbsp; One suggestion was to see if your sourcetype had a hidden trailing space (it does not).&lt;/P&gt;&lt;P&gt;I've tried with and without the "sort - _time"; no change.&amp;nbsp; I've tried with various integers for dedup; no change.&lt;/P&gt;&lt;P&gt;It's a pretty simple search, so I'm stumped.&lt;/P&gt;&lt;P&gt;Anybody got any bright ideas?&lt;/P&gt;&lt;P&gt;This &lt;EM&gt;feels&lt;/EM&gt; like a bug to me.&amp;nbsp; There'd be no way to recreate enough for a splunk issue ticket; and, I wouldn't bother anyway unless I could reproduce on 10.0.1 (when it comes out).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Sep 2025 17:42:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Particular-sourcetype-not-appearing-in-search/m-p/752982#M119535</guid>
      <dc:creator>JyPl4wNYu7GV1uL</dc:creator>
      <dc:date>2025-09-11T17:42:31Z</dc:date>
    </item>
    <item>
      <title>Re: Particular sourcetype not appearing in search</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Particular-sourcetype-not-appearing-in-search/m-p/752985#M119536</link>
      <description>&lt;P&gt;Ok, solved it with this search:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=prefix_* host!="NotThisHost"
| dedup 1 host, sourcetype sortby - _time
| table host, sourcetype, source, _raw&lt;/LI-CODE&gt;&lt;P&gt;So, for some reason piping the "sort" to the "dedup" broke the search.&amp;nbsp; I found this cuz the search dropdown suggested using "dedup ... sortby ..." over "sort | dedup."&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;So my question is "WTF??!!"&amp;nbsp; The interwebs AI claims the "dedup ... sortby ..." is&amp;nbsp;&lt;EM&gt;more efficient&lt;/EM&gt; than "sort | dedup."&amp;nbsp; Perhaps the search dropdown should warn "Don't do that, I'm going to break your search results."&lt;/P&gt;&lt;P&gt;So this is certainly a bug, so be forewarned.&lt;/P&gt;&lt;P&gt;I'd give myself karma if I could. haha&lt;/P&gt;</description>
      <pubDate>Thu, 11 Sep 2025 18:47:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Particular-sourcetype-not-appearing-in-search/m-p/752985#M119536</guid>
      <dc:creator>JyPl4wNYu7GV1uL</dc:creator>
      <dc:date>2025-09-11T18:47:11Z</dc:date>
    </item>
    <item>
      <title>Re: Particular sourcetype not appearing in search</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Particular-sourcetype-not-appearing-in-search/m-p/753004#M119541</link>
      <description>&lt;P&gt;Ok&lt;/P&gt;&lt;P&gt;1. Don't believe what LLMs hallucinate.&lt;/P&gt;&lt;P&gt;2. I don't know what dropdown you are talking about. The dropdown in the search dialog doesn't suggest anything; it just tells you what arguments a command accepts.&lt;/P&gt;&lt;P&gt;3. By default results are sorted in reverse chronological order so unless you reordered your results sorting - _time does completely nothing (ok, to be absolutely clear, I'm not sure about stability of sorting).&lt;/P&gt;&lt;P&gt;4. If you don't get results for a particular combination of fields that looks like a bug. Unless you're hitting some limits but I suppose you shouldn't have that many host/sourcetype pairs to dedup.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Sep 2025 12:33:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Particular-sourcetype-not-appearing-in-search/m-p/753004#M119541</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2025-09-12T12:33:42Z</dc:date>
    </item>
    <item>
      <title>Re: Particular sourcetype not appearing in search</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Particular-sourcetype-not-appearing-in-search/m-p/753013#M119544</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/95660"&gt;@JyPl4wNYu7GV1uL&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your sort command introduced a limit of 10,000 events which could potentially have meant that you had no data for the sourcetype&amp;nbsp; containing "myString"&lt;/P&gt;&lt;P&gt;Removing the sort means that your results are not limited to 10,000 events.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":glowing_star:"&gt;🌟&lt;/span&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Did this answer help you?&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;If so, please consider:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Adding karma to show it was useful&lt;/LI&gt;&lt;LI&gt;Marking it as the solution if it resolved your issue&lt;/LI&gt;&lt;LI&gt;Commenting if you need any clarification&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Your feedback encourages the volunteers in this community to continue contributing&lt;/P&gt;</description>
      <pubDate>Fri, 12 Sep 2025 14:10:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Particular-sourcetype-not-appearing-in-search/m-p/753013#M119544</guid>
      <dc:creator>livehybrid</dc:creator>
      <dc:date>2025-09-12T14:10:18Z</dc:date>
    </item>
    <item>
      <title>Re: Particular sourcetype not appearing in search</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Particular-sourcetype-not-appearing-in-search/m-p/753015#M119545</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/170906"&gt;@livehybrid&lt;/a&gt;&amp;nbsp;Boom!&amp;nbsp; Learn something new every day.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Sep 2025 14:55:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Particular-sourcetype-not-appearing-in-search/m-p/753015#M119545</guid>
      <dc:creator>JyPl4wNYu7GV1uL</dc:creator>
      <dc:date>2025-09-12T14:55:00Z</dc:date>
    </item>
  </channel>
</rss>

