<?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: Min and Max Response Time in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Min-and-Max-Response-Time/m-p/536214#M151612</link>
    <description>&lt;P&gt;You can calculate the numbers then delete them if the status is not success.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;... | stats min(ResponseTime) as Min_Response_Time, max(ResponseTime) as Max_Response_Time by MicroService
| eval Min_Response_Time=if(Status=0,null,Min_Response_Time), Max_Response_Time=if(Status=0,null, Max_Response_Time)&lt;/LI-CODE&gt;</description>
    <pubDate>Mon, 18 Jan 2021 13:51:44 GMT</pubDate>
    <dc:creator>richgalloway</dc:creator>
    <dc:date>2021-01-18T13:51:44Z</dc:date>
    <item>
      <title>Min and Max Response Time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Min-and-Max-Response-Time/m-p/536202#M151606</link>
      <description>&lt;P&gt;Hi I want to calculate&lt;STRONG&gt; Min and Max Response time&lt;/STRONG&gt; only if the &lt;STRONG&gt;status is success.&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;Below is the table format:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;TABLE width="851"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="98"&gt;MicroService&lt;/TD&gt;&lt;TD width="137"&gt;Total_Transaction&lt;/TD&gt;&lt;TD width="64"&gt;Success&lt;/TD&gt;&lt;TD width="64"&gt;Failure&lt;/TD&gt;&lt;TD width="64"&gt;Avg&lt;/TD&gt;&lt;TD width="64"&gt;Failure%&lt;/TD&gt;&lt;TD width="64"&gt;Success%&lt;/TD&gt;&lt;TD width="146"&gt;Min_Response_Time&lt;/TD&gt;&lt;TD width="150"&gt;Max_Response_time&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;LostStolenCard&lt;/TD&gt;&lt;TD&gt;7&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;5223&lt;/TD&gt;&lt;TD&gt;28.57&lt;/TD&gt;&lt;TD&gt;71.43&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;CreditLimit&lt;/TD&gt;&lt;TD&gt;15&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;15&lt;/TD&gt;&lt;TD&gt;4324&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;100&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Mon, 18 Jan 2021 13:42:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Min-and-Max-Response-Time/m-p/536202#M151606</guid>
      <dc:creator>rj1408</dc:creator>
      <dc:date>2021-01-18T13:42:06Z</dc:date>
    </item>
    <item>
      <title>Re: Min and Max Respinse Time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Min-and-Max-Response-Time/m-p/536211#M151610</link>
      <description>&lt;LI-CODE lang="markup"&gt;| eval successTime = if(staus="Success", responseTime, null)
| stats max(successTime) as Max_Response_time min(successTime) as Min_Response_Time by MicroService&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 18 Jan 2021 13:42:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Min-and-Max-Response-Time/m-p/536211#M151610</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-01-18T13:42:39Z</dc:date>
    </item>
    <item>
      <title>Re: Min and Max Response Time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Min-and-Max-Response-Time/m-p/536214#M151612</link>
      <description>&lt;P&gt;You can calculate the numbers then delete them if the status is not success.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;... | stats min(ResponseTime) as Min_Response_Time, max(ResponseTime) as Max_Response_Time by MicroService
| eval Min_Response_Time=if(Status=0,null,Min_Response_Time), Max_Response_Time=if(Status=0,null, Max_Response_Time)&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 18 Jan 2021 13:51:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Min-and-Max-Response-Time/m-p/536214#M151612</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2021-01-18T13:51:44Z</dc:date>
    </item>
    <item>
      <title>Re: Min and Max Respinse Time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Min-and-Max-Response-Time/m-p/536220#M151613</link>
      <description>&lt;P&gt;Thanks!&lt;BR /&gt;&lt;BR /&gt;Can u help me with this one-&amp;nbsp;&lt;BR /&gt;&lt;A href="https://community.splunk.com/t5/Splunk-Search/90th-percentile/m-p/534296#M150983" target="_blank"&gt;https://community.splunk.com/t5/Splunk-Search/90th-percentile/m-p/534296#M150983&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jan 2021 14:35:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Min-and-Max-Response-Time/m-p/536220#M151613</guid>
      <dc:creator>rj1408</dc:creator>
      <dc:date>2021-01-18T14:35:32Z</dc:date>
    </item>
  </channel>
</rss>

