<?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: Mark 90% trend in data? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Mark-90-trend-in-data/m-p/285736#M43194</link>
    <description>&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; we grade on a curve here.. you're fine!&lt;/P&gt;</description>
    <pubDate>Mon, 13 Feb 2017 16:41:45 GMT</pubDate>
    <dc:creator>jkat54</dc:creator>
    <dc:date>2017-02-13T16:41:45Z</dc:date>
    <item>
      <title>Mark 90% trend in data?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Mark-90-trend-in-data/m-p/285729#M43187</link>
      <description>&lt;P&gt;A requirement I have is to show API response times over time, marking min, max, avg and 90% range. In other words, be able to say "90% of response time are X milliseconds or lower.&lt;/P&gt;

&lt;P&gt;Not sure how to approach it. Advice appreciated.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 15:12:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Mark-90-trend-in-data/m-p/285729#M43187</guid>
      <dc:creator>feickertmd</dc:creator>
      <dc:date>2017-02-13T15:12:48Z</dc:date>
    </item>
    <item>
      <title>Re: Mark 90% trend in data?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Mark-90-trend-in-data/m-p/285730#M43188</link>
      <description>&lt;P&gt;Please see the percX(Y) function of the stats command:&lt;/P&gt;

&lt;P&gt;&lt;A href="http://docs.splunk.com/Documentation/Splunk/latest/SearchReference/CommonStatsFunctions"&gt;http://docs.splunk.com/Documentation/Splunk/latest/SearchReference/CommonStatsFunctions&lt;/A&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;... | stats perc90(responseTimeField)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 13 Feb 2017 15:19:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Mark-90-trend-in-data/m-p/285730#M43188</guid>
      <dc:creator>jkat54</dc:creator>
      <dc:date>2017-02-13T15:19:20Z</dc:date>
    </item>
    <item>
      <title>Re: Mark 90% trend in data?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Mark-90-trend-in-data/m-p/285731#M43189</link>
      <description>&lt;P&gt;In the search reference, it's listed in the statistical/aggregate functions, and it's called percxx(), where xx in this case would be 90.  If you wanted the 90th percentile of the response variable, then it would something look like &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| stats min(response) as minresp, max() as maxresp, avg(response) as avgresp, perc90(response) as p90resp by ((whatever))
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;You should probably read the notes, since there are some interesting things about the function.  It actually produces a close estimate that is cheaper and faster to calculate, but you can use exactperc90() to calculate the exact one if you really needed it. &lt;/P&gt;

&lt;P&gt;&lt;A href="http://docs.splunk.com/Documentation/Splunk/5.0.2/SearchReference/CommonStatsFunctions"&gt;http://docs.splunk.com/Documentation/Splunk/5.0.2/SearchReference/CommonStatsFunctions&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 15:29:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Mark-90-trend-in-data/m-p/285731#M43189</guid>
      <dc:creator>DalJeanis</dc:creator>
      <dc:date>2017-02-13T15:29:42Z</dc:date>
    </item>
    <item>
      <title>Re: Mark 90% trend in data?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Mark-90-trend-in-data/m-p/285732#M43190</link>
      <description>&lt;P&gt;I don't think I am looking for percentile. I am looking for frequency.&lt;BR /&gt;
Take, for instance, this list of 30 values:&lt;BR /&gt;
0   0   1   1   2   2   2   3   3   4   4   4   5   5   5   5   6   6   6   7   7   7   7   8   8   8   9   9   9   9&lt;/P&gt;

&lt;P&gt;In this case, the 90th percentile is 9, but 90% of the values are &amp;lt;=7.&lt;/P&gt;

&lt;P&gt;Looking for the second figure.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 15:42:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Mark-90-trend-in-data/m-p/285732#M43190</guid>
      <dc:creator>feickertmd</dc:creator>
      <dc:date>2017-02-13T15:42:19Z</dc:date>
    </item>
    <item>
      <title>Re: Mark 90% trend in data?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Mark-90-trend-in-data/m-p/285733#M43191</link>
      <description>&lt;P&gt;and I am not a stats guy, so I may not be seeing things right!&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 15:42:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Mark-90-trend-in-data/m-p/285733#M43191</guid>
      <dc:creator>feickertmd</dc:creator>
      <dc:date>2017-02-13T15:42:43Z</dc:date>
    </item>
    <item>
      <title>Re: Mark 90% trend in data?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Mark-90-trend-in-data/m-p/285734#M43192</link>
      <description>&lt;P&gt;Your original requirement says  "90% of response time are X milliseconds or lower.", so perc90 is the metrics that you need which say 90% of the entries are 9 or lower (per your example).&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 16:09:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Mark-90-trend-in-data/m-p/285734#M43192</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2017-02-13T16:09:09Z</dc:date>
    </item>
    <item>
      <title>Re: Mark 90% trend in data?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Mark-90-trend-in-data/m-p/285735#M43193</link>
      <description>&lt;P&gt;Thanks. I have played with my sample data a bit more, and I see it better. Like I said, not a stats guy, so I wasn't surprised to find I misunderstood.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 16:37:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Mark-90-trend-in-data/m-p/285735#M43193</guid>
      <dc:creator>feickertmd</dc:creator>
      <dc:date>2017-02-13T16:37:51Z</dc:date>
    </item>
    <item>
      <title>Re: Mark 90% trend in data?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Mark-90-trend-in-data/m-p/285736#M43194</link>
      <description>&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; we grade on a curve here.. you're fine!&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 16:41:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Mark-90-trend-in-data/m-p/285736#M43194</guid>
      <dc:creator>jkat54</dc:creator>
      <dc:date>2017-02-13T16:41:45Z</dc:date>
    </item>
  </channel>
</rss>

