<?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: timechart but only for the top 5 in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/timechart-but-only-for-the-top-5/m-p/81263#M20559</link>
    <description>&lt;P&gt;I'm going to try this to see how it comes out&lt;/P&gt;</description>
    <pubDate>Wed, 29 Feb 2012 00:38:52 GMT</pubDate>
    <dc:creator>hartfoml</dc:creator>
    <dc:date>2012-02-29T00:38:52Z</dc:date>
    <item>
      <title>timechart but only for the top 5</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timechart-but-only-for-the-top-5/m-p/81257#M20553</link>
      <description>&lt;P&gt;I want to use timechart to show a graph of the progress of an item so I use this command&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| timechart span=1w count by plugin
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;the problem is I have too many plugins. I want to limit the chart to only the top 5 plugin's over the time period&lt;/P&gt;

&lt;P&gt;So something like this but this dosn't work&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| timecart span=1w top 5 plugin
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Anyone know how to use top with timechart ??&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2012 23:45:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timechart-but-only-for-the-top-5/m-p/81257#M20553</guid>
      <dc:creator>hartfoml</dc:creator>
      <dc:date>2012-02-28T23:45:02Z</dc:date>
    </item>
    <item>
      <title>Re: timechart but only for the top 5</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timechart-but-only-for-the-top-5/m-p/81258#M20554</link>
      <description>&lt;P&gt;OK so i found out that LIMIT reduces to the top "n" number of items like this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; | timechart span=1w limit=5 count by plugin
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;this gives me the top 5 but puts in the other field with all the ones not in the top 5.&lt;/P&gt;

&lt;P&gt;Anyone know how to not show other in the chart???&lt;/P&gt;</description>
      <pubDate>Wed, 29 Feb 2012 00:23:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timechart-but-only-for-the-top-5/m-p/81258#M20554</guid>
      <dc:creator>hartfoml</dc:creator>
      <dc:date>2012-02-29T00:23:23Z</dc:date>
    </item>
    <item>
      <title>Re: timechart but only for the top 5</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timechart-but-only-for-the-top-5/m-p/81259#M20555</link>
      <description>&lt;P&gt;You could try to use subsearch:&lt;/P&gt;

&lt;P&gt;&lt;A href="http://docs.splunk.com/Documentation/Splunk/latest/User/HowSubsearchesWork"&gt;http://docs.splunk.com/Documentation/Splunk/latest/User/HowSubsearchesWork&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Something like this:&lt;/P&gt;

&lt;P&gt;index=*  [search index=* | stats count by plugin | sort - count | head 5 | fields + plugin] | timechart span=1w count by plugin&lt;/P&gt;</description>
      <pubDate>Wed, 29 Feb 2012 00:33:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timechart-but-only-for-the-top-5/m-p/81259#M20555</guid>
      <dc:creator>imrago</dc:creator>
      <dc:date>2012-02-29T00:33:22Z</dc:date>
    </item>
    <item>
      <title>Re: timechart but only for the top 5</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timechart-but-only-for-the-top-5/m-p/81260#M20556</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;| timecart span=1w limit=5 useother=f count by plugin
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 29 Feb 2012 00:37:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timechart-but-only-for-the-top-5/m-p/81260#M20556</guid>
      <dc:creator>gkanapathy</dc:creator>
      <dc:date>2012-02-29T00:37:27Z</dc:date>
    </item>
    <item>
      <title>Re: timechart but only for the top 5</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timechart-but-only-for-the-top-5/m-p/81261#M20557</link>
      <description>&lt;P&gt;I got it thanks the right syntax to use for this is&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| timechart useother=F span=1w limit=5 count by plugin
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;this says to useother=false so that other is not on the chart and the limit is 5&lt;/P&gt;</description>
      <pubDate>Wed, 29 Feb 2012 00:37:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timechart-but-only-for-the-top-5/m-p/81261#M20557</guid>
      <dc:creator>hartfoml</dc:creator>
      <dc:date>2012-02-29T00:37:53Z</dc:date>
    </item>
    <item>
      <title>Re: timechart but only for the top 5</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timechart-but-only-for-the-top-5/m-p/81262#M20558</link>
      <description>&lt;P&gt;thanks you beet me to it&lt;/P&gt;</description>
      <pubDate>Wed, 29 Feb 2012 00:38:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timechart-but-only-for-the-top-5/m-p/81262#M20558</guid>
      <dc:creator>hartfoml</dc:creator>
      <dc:date>2012-02-29T00:38:32Z</dc:date>
    </item>
    <item>
      <title>Re: timechart but only for the top 5</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timechart-but-only-for-the-top-5/m-p/81263#M20559</link>
      <description>&lt;P&gt;I'm going to try this to see how it comes out&lt;/P&gt;</description>
      <pubDate>Wed, 29 Feb 2012 00:38:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timechart-but-only-for-the-top-5/m-p/81263#M20559</guid>
      <dc:creator>hartfoml</dc:creator>
      <dc:date>2012-02-29T00:38:52Z</dc:date>
    </item>
    <item>
      <title>Re: timechart but only for the top 5</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timechart-but-only-for-the-top-5/m-p/81264#M20560</link>
      <description>&lt;P&gt;would limit=5 show you the top 5 "plugin" or only limit it to some random 5 "plugins"? as in, would it show you the highest 5 counts of a "plugin"?&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jan 2016 19:00:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timechart-but-only-for-the-top-5/m-p/81264#M20560</guid>
      <dc:creator>sbattista09</dc:creator>
      <dc:date>2016-01-19T19:00:20Z</dc:date>
    </item>
    <item>
      <title>Re: timechart but only for the top 5</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timechart-but-only-for-the-top-5/m-p/81265#M20561</link>
      <description>&lt;P&gt;useother=f&lt;/P&gt;</description>
      <pubDate>Thu, 11 May 2017 16:45:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timechart-but-only-for-the-top-5/m-p/81265#M20561</guid>
      <dc:creator>jtrimmings</dc:creator>
      <dc:date>2017-05-11T16:45:25Z</dc:date>
    </item>
    <item>
      <title>Re: timechart but only for the top 5</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timechart-but-only-for-the-top-5/m-p/81266#M20562</link>
      <description>&lt;P&gt;This does not seem to chart the top list, but a random list of 5.  They are not the "top 5" in count, and not in order by count.  How do we do that?&lt;/P&gt;</description>
      <pubDate>Fri, 04 Aug 2017 14:19:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timechart-but-only-for-the-top-5/m-p/81266#M20562</guid>
      <dc:creator>kbrown9392</dc:creator>
      <dc:date>2017-08-04T14:19:46Z</dc:date>
    </item>
    <item>
      <title>Re: timechart but only for the top 5</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timechart-but-only-for-the-top-5/m-p/745309#M241405</link>
      <description>&lt;P&gt;I know this is a pretty old post, but wanted to put this here for anyone else looking.&amp;nbsp; This has bothered me for some time.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems timechart, as of some version, supports 3 limit options:&lt;/P&gt;&lt;P&gt;limit=N&lt;/P&gt;&lt;P&gt;limit=topN&lt;/P&gt;&lt;P&gt;limit=bottomN&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Timechart" target="_blank"&gt;https://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Timechart&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 May 2025 13:45:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timechart-but-only-for-the-top-5/m-p/745309#M241405</guid>
      <dc:creator>msquicc</dc:creator>
      <dc:date>2025-05-01T13:45:14Z</dc:date>
    </item>
    <item>
      <title>Re: timechart but only for the top 5</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timechart-but-only-for-the-top-5/m-p/745315#M241408</link>
      <description>&lt;P&gt;limit=N is the same as limit=topN&lt;/P&gt;&lt;P&gt;And the bottomN appeared in 8.1, which was several years ago &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 May 2025 16:28:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timechart-but-only-for-the-top-5/m-p/745315#M241408</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2025-05-01T16:28:37Z</dc:date>
    </item>
  </channel>
</rss>

