<?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 timechart ratio by model in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/timechart-ratio-by-model/m-p/394690#M114625</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;below is my query &lt;/P&gt;

&lt;P&gt;index_ sourcetype=main&lt;BR /&gt;
| stats count(eval(level="Error")) as ERRORS count(eval(level="Information")) as USAGE by Model osVersion  firmware&lt;BR /&gt;
|eval RATE=round(((EXCEEDED/REQUEST)*100),1)&lt;/P&gt;

&lt;P&gt;and I want to time chart the ratio by this three coloums/dimensions &lt;STRONG&gt;Model, osVersion,  firmware&lt;/STRONG&gt;.&lt;/P&gt;

&lt;P&gt;Can someone assist me please?&lt;/P&gt;</description>
    <pubDate>Wed, 09 May 2018 19:10:40 GMT</pubDate>
    <dc:creator>sarathipattam</dc:creator>
    <dc:date>2018-05-09T19:10:40Z</dc:date>
    <item>
      <title>timechart ratio by model</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timechart-ratio-by-model/m-p/394690#M114625</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;below is my query &lt;/P&gt;

&lt;P&gt;index_ sourcetype=main&lt;BR /&gt;
| stats count(eval(level="Error")) as ERRORS count(eval(level="Information")) as USAGE by Model osVersion  firmware&lt;BR /&gt;
|eval RATE=round(((EXCEEDED/REQUEST)*100),1)&lt;/P&gt;

&lt;P&gt;and I want to time chart the ratio by this three coloums/dimensions &lt;STRONG&gt;Model, osVersion,  firmware&lt;/STRONG&gt;.&lt;/P&gt;

&lt;P&gt;Can someone assist me please?&lt;/P&gt;</description>
      <pubDate>Wed, 09 May 2018 19:10:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timechart-ratio-by-model/m-p/394690#M114625</guid>
      <dc:creator>sarathipattam</dc:creator>
      <dc:date>2018-05-09T19:10:40Z</dc:date>
    </item>
    <item>
      <title>Re: timechart ratio by model</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timechart-ratio-by-model/m-p/394691#M114626</link>
      <description>&lt;P&gt;I'm assuming there is a typo in the field names in the eval for RATE field (should be ERRORS/USAGE), so using the correct names, try like this (whatever timespan you want to use for time chart, update the same in &lt;CODE&gt;bin&lt;/CODE&gt; and &lt;CODE&gt;timechart&lt;/CODE&gt; command, below uses timespan of 1h or 1 hour)&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index_ sourcetype=main
| bin span=1h _time
| stats count(eval(level="Error")) as ERRORS count(eval(level="Information")) as USAGE by _time Model osVersion firmware
|eval RATE=round(((ERRORS/USAGE)*100),1)
| eval Model_osVersion_firmware=Model."/".osVersion."/".firmware
| timechart span=1h avg(RATE) by Model_osVersion_firmware
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 09 May 2018 19:19:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timechart-ratio-by-model/m-p/394691#M114626</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2018-05-09T19:19:15Z</dc:date>
    </item>
    <item>
      <title>Re: timechart ratio by model</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timechart-ratio-by-model/m-p/394692#M114627</link>
      <description>&lt;P&gt;concatenate is not working for me&lt;/P&gt;</description>
      <pubDate>Wed, 09 May 2018 20:27:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timechart-ratio-by-model/m-p/394692#M114627</guid>
      <dc:creator>sarathipattam</dc:creator>
      <dc:date>2018-05-09T20:27:54Z</dc:date>
    </item>
    <item>
      <title>Re: timechart ratio by model</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timechart-ratio-by-model/m-p/394693#M114628</link>
      <description>&lt;P&gt;i used strcat and it worked.. thank you!!&lt;/P&gt;</description>
      <pubDate>Wed, 09 May 2018 21:20:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timechart-ratio-by-model/m-p/394693#M114628</guid>
      <dc:creator>sarathipattam</dc:creator>
      <dc:date>2018-05-09T21:20:37Z</dc:date>
    </item>
  </channel>
</rss>

