<?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: Using a timechart, why are all the results not being shown on the dashboard? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Using-a-timechart-why-are-all-the-results-not-being-shown-on-the/m-p/196732#M12311</link>
    <description>&lt;P&gt;Thank you for your help&lt;/P&gt;</description>
    <pubDate>Fri, 28 Aug 2015 16:59:58 GMT</pubDate>
    <dc:creator>alanxu</dc:creator>
    <dc:date>2015-08-28T16:59:58Z</dc:date>
    <item>
      <title>Using a timechart, why are all the results not being shown on the dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Using-a-timechart-why-are-all-the-results-not-being-shown-on-the/m-p/196728#M12307</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/613i399C98A488AF4300/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;The search I am using is &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;host=... source = ... SP | timechart latest(TIME) as Completion_Time by BeginName | eval Completion_Time=tonumber(replace(Completion_Time,"(\d+):(\d+):(\d+)","\1.\2"))
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;So for &lt;STRONG&gt;BeginName&lt;/STRONG&gt; there should have 26 different names, but on my dashboard, I only have 10 names. I was wondering if it's because all the names wouldn't fit?&lt;/P&gt;</description>
      <pubDate>Fri, 28 Aug 2015 15:49:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Using-a-timechart-why-are-all-the-results-not-being-shown-on-the/m-p/196728#M12307</guid>
      <dc:creator>alanxu</dc:creator>
      <dc:date>2015-08-28T15:49:15Z</dc:date>
    </item>
    <item>
      <title>Re: Using a timechart, why are all the results not being shown on the dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Using-a-timechart-why-are-all-the-results-not-being-shown-on-the/m-p/196729#M12308</link>
      <description>&lt;P&gt;This is where the limit argument to &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.2.5/SearchReference/timechart"&gt;timechart&lt;/A&gt; is useful to know, the others are included in the "OTHER" column. Splunk has a default of 10 here because often timechart is displayed in a graph, and as the number of series grows, it takes more and more to display (and if you have too many distinct series it may not even display correctly). But if you want to ensure that you have all series, just change:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| timechart latest(TIME) as Completion_Time by BeginName
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;to:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| timechart limit=0 latest(TIME) as Completion_Time by BeginName
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;As you're doing a latest instead of some of the other stats functions out there, I'm not sure what your source data is, but you may also be interested in the &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.2.5/SearchReference/xyseries"&gt;xyseries&lt;/A&gt; command to turn rows of data into a tabular format.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Aug 2015 16:19:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Using-a-timechart-why-are-all-the-results-not-being-shown-on-the/m-p/196729#M12308</guid>
      <dc:creator>acharlieh</dc:creator>
      <dc:date>2015-08-28T16:19:12Z</dc:date>
    </item>
    <item>
      <title>Re: Using a timechart, why are all the results not being shown on the dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Using-a-timechart-why-are-all-the-results-not-being-shown-on-the/m-p/196730#M12309</link>
      <description>&lt;P&gt;Yes, by default &lt;CODE&gt;timechart&lt;/CODE&gt; only shows 10 from the &lt;CODE&gt;by&lt;/CODE&gt; clause. You can change it like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| timechart limit=25 latest(TIME) as Completion_Time by BeginName
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;You can also remove the &lt;CODE&gt;NULL&lt;/CODE&gt; and &lt;CODE&gt;OTHER&lt;/CODE&gt; fields, using the options outlined here: &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.2.5/SearchReference/timechart"&gt;http://docs.splunk.com/Documentation/Splunk/6.2.5/SearchReference/timechart&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Aug 2015 16:20:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Using-a-timechart-why-are-all-the-results-not-being-shown-on-the/m-p/196730#M12309</guid>
      <dc:creator>alacercogitatus</dc:creator>
      <dc:date>2015-08-28T16:20:24Z</dc:date>
    </item>
    <item>
      <title>Re: Using a timechart, why are all the results not being shown on the dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Using-a-timechart-why-are-all-the-results-not-being-shown-on-the/m-p/196731#M12310</link>
      <description>&lt;P&gt;Your answer was great I just chose the earlier one because it was similar&lt;/P&gt;</description>
      <pubDate>Fri, 28 Aug 2015 16:59:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Using-a-timechart-why-are-all-the-results-not-being-shown-on-the/m-p/196731#M12310</guid>
      <dc:creator>alanxu</dc:creator>
      <dc:date>2015-08-28T16:59:50Z</dc:date>
    </item>
    <item>
      <title>Re: Using a timechart, why are all the results not being shown on the dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Using-a-timechart-why-are-all-the-results-not-being-shown-on-the/m-p/196732#M12311</link>
      <description>&lt;P&gt;Thank you for your help&lt;/P&gt;</description>
      <pubDate>Fri, 28 Aug 2015 16:59:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Using-a-timechart-why-are-all-the-results-not-being-shown-on-the/m-p/196732#M12311</guid>
      <dc:creator>alanxu</dc:creator>
      <dc:date>2015-08-28T16:59:58Z</dc:date>
    </item>
  </channel>
</rss>

