<?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: How to create a timechart with actual values instead of some function of the actual values (such as sum, avg) etc? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-timechart-with-actual-values-instead-of-some/m-p/314849#M94238</link>
    <description>&lt;P&gt;Charts have limits on how many points they can show, that's why it advisable to use an aggregation command to reduce the number of points plotted (see this for limits: &lt;A href="http://docs.splunk.com/Documentation/SplunkCloud/6.6.1/Viz/ChartDisplayissues#Searches_with_non-transforming_commands"&gt;http://docs.splunk.com/Documentation/SplunkCloud/6.6.1/Viz/ChartDisplayissues#Searches_with_non-transforming_commands&lt;/A&gt;). You may be able to avoid using aggregation command and using just simple table command to show all points. How many events you've with our base search ?&lt;/P&gt;</description>
    <pubDate>Thu, 31 Aug 2017 19:04:05 GMT</pubDate>
    <dc:creator>somesoni2</dc:creator>
    <dc:date>2017-08-31T19:04:05Z</dc:date>
    <item>
      <title>How to create a timechart with actual values instead of some function of the actual values (such as sum, avg) etc?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-timechart-with-actual-values-instead-of-some/m-p/314846#M94235</link>
      <description>&lt;P&gt;I have a splunk query of the following:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;searc&amp;gt; | timechart avg(cache_size) by host_instance
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;That will give me the average cache size per day. However I want to use the time metric for the log to visualize how much of each "host_instance" cache is being used at a certain time. Ideally I would l like to look at this chart and see how much cache was used by instance "a" (and all other instances) at a certain time. &lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2017 18:09:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-timechart-with-actual-values-instead-of-some/m-p/314846#M94235</guid>
      <dc:creator>gb0143</dc:creator>
      <dc:date>2017-08-31T18:09:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a timechart with actual values instead of some function of the actual values (such as sum, avg) etc?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-timechart-with-actual-values-instead-of-some/m-p/314847#M94236</link>
      <description>&lt;P&gt;would &lt;CODE&gt;values(cache_size)&lt;/CODE&gt; or &lt;CODE&gt;list(cache_size)&lt;/CODE&gt; be what you are looking for? or perhaps &lt;CODE&gt;|bucket _time span=1d |table _time host_instance cache_size&lt;/CODE&gt; but bucket by 1d, 1h, etc., depending on what you need&lt;/P&gt;

&lt;P&gt;otherwise, if you could more clearly define the expected output, that would be very helpful&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2017 18:43:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-timechart-with-actual-values-instead-of-some/m-p/314847#M94236</guid>
      <dc:creator>cmerriman</dc:creator>
      <dc:date>2017-08-31T18:43:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a timechart with actual values instead of some function of the actual values (such as sum, avg) etc?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-timechart-with-actual-values-instead-of-some/m-p/314848#M94237</link>
      <description>&lt;P&gt;Also, if you could maybe mock up what that shows that isn't what you need, and what you'd like instead?&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2017 18:49:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-timechart-with-actual-values-instead-of-some/m-p/314848#M94237</guid>
      <dc:creator>Richfez</dc:creator>
      <dc:date>2017-08-31T18:49:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a timechart with actual values instead of some function of the actual values (such as sum, avg) etc?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-timechart-with-actual-values-instead-of-some/m-p/314849#M94238</link>
      <description>&lt;P&gt;Charts have limits on how many points they can show, that's why it advisable to use an aggregation command to reduce the number of points plotted (see this for limits: &lt;A href="http://docs.splunk.com/Documentation/SplunkCloud/6.6.1/Viz/ChartDisplayissues#Searches_with_non-transforming_commands"&gt;http://docs.splunk.com/Documentation/SplunkCloud/6.6.1/Viz/ChartDisplayissues#Searches_with_non-transforming_commands&lt;/A&gt;). You may be able to avoid using aggregation command and using just simple table command to show all points. How many events you've with our base search ?&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2017 19:04:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-timechart-with-actual-values-instead-of-some/m-p/314849#M94238</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2017-08-31T19:04:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a timechart with actual values instead of some function of the actual values (such as sum, avg) etc?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-timechart-with-actual-values-instead-of-some/m-p/314850#M94239</link>
      <description>&lt;P&gt;Adjust the timespan.  &lt;CODE&gt;1h&lt;/CODE&gt;, &lt;CODE&gt;30m&lt;/CODE&gt;, &lt;CODE&gt;15m&lt;/CODE&gt; should be viable ...&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  your search  | timechart span=1h avg(cache_size) by host_instance
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 31 Aug 2017 19:52:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-timechart-with-actual-values-instead-of-some/m-p/314850#M94239</guid>
      <dc:creator>DalJeanis</dc:creator>
      <dc:date>2017-08-31T19:52:03Z</dc:date>
    </item>
  </channel>
</rss>

