<?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: Scale Y axis for timechart in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Scale-Y-axis-for-timechart/m-p/62178#M15358</link>
    <description>&lt;P&gt;I think you just want to eval count to what you want&lt;/P&gt;

&lt;P&gt;ex:&lt;BR /&gt;
... |  eval(count(source)/60)&lt;/P&gt;

&lt;P&gt;So your search:&lt;BR /&gt;
sourcetype="access-prod-wcs" useragent = "CLOUDTEST-SOASTA" OR useragent = "Lr-Perf" OrderProcessCmd | timechart eval(count(sitefamily)/60) by sitefamily &lt;/P&gt;

&lt;P&gt;Other timechart commands:&lt;BR /&gt;
&lt;A href="http://docs.splunk.com/Documentation/Splunk/4.3.4/SearchReference/CommonStatsFunctions"&gt;CommonStatsFunctions&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 17 Sep 2012 20:55:17 GMT</pubDate>
    <dc:creator>melting</dc:creator>
    <dc:date>2012-09-17T20:55:17Z</dc:date>
    <item>
      <title>Scale Y axis for timechart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Scale-Y-axis-for-timechart/m-p/62177#M15357</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I run a real time query in splunk search during load testing, and it comes out like this:&lt;/P&gt;

&lt;P&gt;&lt;A href="http://picpaste.com/pics/splunk_timechart-vCg4doz1.1347913377.PNG"&gt;http://picpaste.com/pics/splunk_timechart-vCg4doz1.1347913377.PNG&lt;/A&gt;&lt;BR /&gt;
&lt;IMG src="http://picpaste.com/pics/splunk_timechart-vCg4doz1.1347913377.PNG" alt="alt text" /&gt;&lt;/P&gt;

&lt;P&gt;I'd like to be able to divide the y-axis by 60. So instead of 200/400/600/800 it'd be 3.33/6.66/10/etc. Can this be done?&lt;/P&gt;

&lt;P&gt;The query is &lt;CODE&gt;sourcetype="access-prod-wcs" useragent = "CLOUDTEST-SOASTA" OR useragent = "Lr-Perf" OrderProcessCmd | timechart count by sitefamily&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 17 Sep 2012 20:22:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Scale-Y-axis-for-timechart/m-p/62177#M15357</guid>
      <dc:creator>kkao00</dc:creator>
      <dc:date>2012-09-17T20:22:46Z</dc:date>
    </item>
    <item>
      <title>Re: Scale Y axis for timechart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Scale-Y-axis-for-timechart/m-p/62178#M15358</link>
      <description>&lt;P&gt;I think you just want to eval count to what you want&lt;/P&gt;

&lt;P&gt;ex:&lt;BR /&gt;
... |  eval(count(source)/60)&lt;/P&gt;

&lt;P&gt;So your search:&lt;BR /&gt;
sourcetype="access-prod-wcs" useragent = "CLOUDTEST-SOASTA" OR useragent = "Lr-Perf" OrderProcessCmd | timechart eval(count(sitefamily)/60) by sitefamily &lt;/P&gt;

&lt;P&gt;Other timechart commands:&lt;BR /&gt;
&lt;A href="http://docs.splunk.com/Documentation/Splunk/4.3.4/SearchReference/CommonStatsFunctions"&gt;CommonStatsFunctions&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Sep 2012 20:55:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Scale-Y-axis-for-timechart/m-p/62178#M15358</guid>
      <dc:creator>melting</dc:creator>
      <dc:date>2012-09-17T20:55:17Z</dc:date>
    </item>
    <item>
      <title>Re: Scale Y axis for timechart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Scale-Y-axis-for-timechart/m-p/62179#M15359</link>
      <description>&lt;P&gt;Didn't seem to work...Shows the same chart as the original query.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Sep 2012 13:26:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Scale-Y-axis-for-timechart/m-p/62179#M15359</guid>
      <dc:creator>kkao00</dc:creator>
      <dc:date>2012-09-18T13:26:18Z</dc:date>
    </item>
    <item>
      <title>Re: Scale Y axis for timechart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Scale-Y-axis-for-timechart/m-p/62180#M15360</link>
      <description>&lt;P&gt;I edited my answer.  I had an ever simplified version of your search.  Take look at my edited answer.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Sep 2012 16:01:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Scale-Y-axis-for-timechart/m-p/62180#M15360</guid>
      <dc:creator>melting</dc:creator>
      <dc:date>2012-09-18T16:01:14Z</dc:date>
    </item>
    <item>
      <title>Re: Scale Y axis for timechart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Scale-Y-axis-for-timechart/m-p/62181#M15361</link>
      <description>&lt;P&gt;Thank you!!!&lt;/P&gt;</description>
      <pubDate>Wed, 19 Sep 2012 18:45:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Scale-Y-axis-for-timechart/m-p/62181#M15361</guid>
      <dc:creator>kkao00</dc:creator>
      <dc:date>2012-09-19T18:45:21Z</dc:date>
    </item>
  </channel>
</rss>

