<?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: How to add a calculated values as threshold in a line chart? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-add-a-calculated-values-as-threshold-in-a-line-chart/m-p/591106#M48492</link>
    <description>&lt;P&gt;Splunk provide various training and certification opportunities&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.splunk.com/en_us/training.html?sort=Newest" target="_blank"&gt;Splunk Training &amp;amp; Certification | Splunk&lt;/A&gt;&lt;/P&gt;&lt;P&gt;You can also download and setup trail instances to try things out.&lt;/P&gt;&lt;P&gt;You could look through the answers provided here and other community channels to see how other people have approached various problems.&lt;/P&gt;</description>
    <pubDate>Mon, 28 Mar 2022 15:28:28 GMT</pubDate>
    <dc:creator>ITWhisperer</dc:creator>
    <dc:date>2022-03-28T15:28:28Z</dc:date>
    <item>
      <title>How to add a calculated values as threshold in a line chart?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-add-a-calculated-values-as-threshold-in-a-line-chart/m-p/591058#M48486</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;I have a line chart of some tasks and its duration. I am trying to add average of the duration of all tasks as threshold.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;|stats values(duration) as "Duration(Hr)" by Task|sort Task|stats avg(duration) as threshold&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am not getting any results from the query.I have previously added threshold as a fixed value. Is there any different method to add a threshold value which is calculated not fixed.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Mar 2022 10:59:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-add-a-calculated-values-as-threshold-in-a-line-chart/m-p/591058#M48486</guid>
      <dc:creator>anooshac</dc:creator>
      <dc:date>2022-03-28T10:59:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a calculated values as threshold in a line chart?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-add-a-calculated-values-as-threshold-in-a-line-chart/m-p/591064#M48488</link>
      <description>&lt;P&gt;Use eventstats&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;|stats values(duration) as "Duration(Hr)" by Task|sort Task|eventstats avg('Duration(Hr)') as threshold&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 28 Mar 2022 11:17:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-add-a-calculated-values-as-threshold-in-a-line-chart/m-p/591064#M48488</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-03-28T11:17:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a calculated values as threshold in a line chart?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-add-a-calculated-values-as-threshold-in-a-line-chart/m-p/591066#M48489</link>
      <description>&lt;P&gt;Thanks!! It is working. Does the aggregate function only work with eventstats?&lt;/P&gt;</description>
      <pubDate>Mon, 28 Mar 2022 11:25:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-add-a-calculated-values-as-threshold-in-a-line-chart/m-p/591066#M48489</guid>
      <dc:creator>anooshac</dc:creator>
      <dc:date>2022-03-28T11:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a calculated values as threshold in a line chart?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-add-a-calculated-values-as-threshold-in-a-line-chart/m-p/591067#M48490</link>
      <description>&lt;P&gt;No, the aggregate function works for all the stats and chart commands, eventstats adds the field to the events in the pipeline, whereas stats replaces the events in the pipeline&lt;/P&gt;</description>
      <pubDate>Mon, 28 Mar 2022 11:28:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-add-a-calculated-values-as-threshold-in-a-line-chart/m-p/591067#M48490</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-03-28T11:28:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a calculated values as threshold in a line chart?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-add-a-calculated-values-as-threshold-in-a-line-chart/m-p/591075#M48491</link>
      <description>&lt;P&gt;Thank you so much for the info.&lt;/P&gt;&lt;P&gt;Can you please suggest any resources which will help in increasing the Splunk knowledge..&lt;/P&gt;</description>
      <pubDate>Mon, 28 Mar 2022 11:59:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-add-a-calculated-values-as-threshold-in-a-line-chart/m-p/591075#M48491</guid>
      <dc:creator>anooshac</dc:creator>
      <dc:date>2022-03-28T11:59:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a calculated values as threshold in a line chart?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-add-a-calculated-values-as-threshold-in-a-line-chart/m-p/591106#M48492</link>
      <description>&lt;P&gt;Splunk provide various training and certification opportunities&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.splunk.com/en_us/training.html?sort=Newest" target="_blank"&gt;Splunk Training &amp;amp; Certification | Splunk&lt;/A&gt;&lt;/P&gt;&lt;P&gt;You can also download and setup trail instances to try things out.&lt;/P&gt;&lt;P&gt;You could look through the answers provided here and other community channels to see how other people have approached various problems.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Mar 2022 15:28:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-add-a-calculated-values-as-threshold-in-a-line-chart/m-p/591106#M48492</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-03-28T15:28:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a calculated values as threshold in a line chart?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-add-a-calculated-values-as-threshold-in-a-line-chart/m-p/591385#M48505</link>
      <description>&lt;P&gt;Sure..Thank you so much for the info!!&lt;/P&gt;</description>
      <pubDate>Wed, 30 Mar 2022 04:44:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-add-a-calculated-values-as-threshold-in-a-line-chart/m-p/591385#M48505</guid>
      <dc:creator>anooshac</dc:creator>
      <dc:date>2022-03-30T04:44:58Z</dc:date>
    </item>
  </channel>
</rss>

