<?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: count by response time range in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/count-by-response-time-range/m-p/169314#M48374</link>
    <description>&lt;P&gt;Try this.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;source=aaa | eval Description=case(rt_sec&amp;gt;10 AND rt_sec&amp;lt;=20,"G10", rt_sec&amp;gt;20 AND rt_sec&amp;lt;=30,"G20",rt_sec&amp;gt;30 AND rt_sec&amp;lt;=40,"G40",rt_sec&amp;gt;40,"G10")| stats count by Description
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 27 Feb 2014 21:24:52 GMT</pubDate>
    <dc:creator>somesoni2</dc:creator>
    <dc:date>2014-02-27T21:24:52Z</dc:date>
    <item>
      <title>count by response time range</title>
      <link>https://community.splunk.com/t5/Splunk-Search/count-by-response-time-range/m-p/169313#M48373</link>
      <description>&lt;P&gt;source aaa| eval Description=case(rt_sec&amp;gt;10, "G10", rt_sec&amp;gt;20, "G20", rt_sec&amp;gt;30, "G30", rt_sec&amp;gt;40, "G40") | stats count by Description&lt;/P&gt;

&lt;P&gt;this seems to only give me results for G10 even though I have many cases with response times greater then 10 sec... if i just do source aaa rt_sec &amp;gt; 20, I get results. Please help me find the issue here.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 16:00:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/count-by-response-time-range/m-p/169313#M48373</guid>
      <dc:creator>jibiuthaman</dc:creator>
      <dc:date>2020-09-28T16:00:14Z</dc:date>
    </item>
    <item>
      <title>Re: count by response time range</title>
      <link>https://community.splunk.com/t5/Splunk-Search/count-by-response-time-range/m-p/169314#M48374</link>
      <description>&lt;P&gt;Try this.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;source=aaa | eval Description=case(rt_sec&amp;gt;10 AND rt_sec&amp;lt;=20,"G10", rt_sec&amp;gt;20 AND rt_sec&amp;lt;=30,"G20",rt_sec&amp;gt;30 AND rt_sec&amp;lt;=40,"G40",rt_sec&amp;gt;40,"G10")| stats count by Description
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 27 Feb 2014 21:24:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/count-by-response-time-range/m-p/169314#M48374</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2014-02-27T21:24:52Z</dc:date>
    </item>
    <item>
      <title>Re: count by response time range</title>
      <link>https://community.splunk.com/t5/Splunk-Search/count-by-response-time-range/m-p/169315#M48375</link>
      <description>&lt;P&gt;Work and thanks again..&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2014 16:48:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/count-by-response-time-range/m-p/169315#M48375</guid>
      <dc:creator>jibiuthaman</dc:creator>
      <dc:date>2014-02-28T16:48:10Z</dc:date>
    </item>
    <item>
      <title>Re: count by response time range</title>
      <link>https://community.splunk.com/t5/Splunk-Search/count-by-response-time-range/m-p/702287#M238152</link>
      <description>&lt;P&gt;I'm having similar query but when using the below case .. onlt &amp;lt;=500 and &amp;gt;=1500 are getting counted in stats&amp;nbsp;&lt;BR /&gt;duration =6000's are also getting counted in &amp;gt;1500ms case not sure why&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;index=*
| rex "TxDurationInMillis=(?&amp;lt;TxDurationInMillis&amp;gt;\d+)"
| eval ResponseTime = tonumber(TxDurationInMillis)
| eval ResponseTimeCase=case(
ResponseTime &amp;lt;= 500, "&amp;lt;=500ms",
ResponseTime &amp;gt; 500 AND ResponseTime &amp;lt;= 1000, "&amp;gt;500ms and &amp;lt;=1000ms",
ResponseTime &amp;gt; 1000 AND ResponseTime &amp;lt;= 1400, "&amp;gt;1000ms and &amp;lt;=1400ms",
ResponseTime &amp;gt; 1400 AND ResponseTime &amp;lt; 1500, "&amp;gt;1400ms and &amp;lt;1500ms",
ResponseTime &amp;gt;= 1500, "&amp;gt;=1500ms"
)
| table TxDurationInMillis ResponseTime ResponseTimeCase&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 18 Oct 2024 23:29:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/count-by-response-time-range/m-p/702287#M238152</guid>
      <dc:creator>ksuyash</dc:creator>
      <dc:date>2024-10-18T23:29:34Z</dc:date>
    </item>
  </channel>
</rss>

