<?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 display trend for 3 months? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-display-trend-for-3-months/m-p/379440#M42622</link>
    <description>&lt;P&gt;@udaypulipaka ,&lt;/P&gt;

&lt;P&gt;Please accept the answer if it worked for you!.&lt;/P&gt;</description>
    <pubDate>Wed, 13 Feb 2019 06:01:46 GMT</pubDate>
    <dc:creator>vinod94</dc:creator>
    <dc:date>2019-02-13T06:01:46Z</dc:date>
    <item>
      <title>How to display trend for 3 months?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-display-trend-for-3-months/m-p/379435#M42617</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;How can i display last 3 months data monthly wise count as trend dashboard.To check whether monthly increasing or decreaing data.&lt;/P&gt;

&lt;P&gt;index="os" sourcetype="Service"  CaseNumber=* status=*  assignment=* |dedup _time,CaseNumber,assignment_group| streamstats current=f last(assignment_group) as lg, last(active) as  Active by CaseNumber   | eval ss=case(assignment!=lg AND assignment="Susta","Escalated",assignment="Susta" AND status="Complete" AND (isnull(Active) OR Active="true"),"Resolved") |timechart count by ss usenull=f&lt;/P&gt;

&lt;P&gt;How can i display monthly wise count  as trend in dashboard&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 23:12:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-display-trend-for-3-months/m-p/379435#M42617</guid>
      <dc:creator>udaypulipaka</dc:creator>
      <dc:date>2020-09-29T23:12:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to display trend for 3 months?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-display-trend-for-3-months/m-p/379436#M42618</link>
      <description>&lt;P&gt;Try this,&lt;/P&gt;

&lt;P&gt;You can use span in timechart&lt;/P&gt;

&lt;P&gt;&lt;A href="https://docs.splunk.com/Documentation/SplunkCloud/7.2.3/SearchReference/Timechart"&gt;https://docs.splunk.com/Documentation/SplunkCloud/7.2.3/SearchReference/Timechart&lt;/A&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Your search |  timechart  span=3mon count by ss usenull=f
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 12 Feb 2019 09:40:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-display-trend-for-3-months/m-p/379436#M42618</guid>
      <dc:creator>vinod94</dc:creator>
      <dc:date>2019-02-12T09:40:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to display trend for 3 months?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-display-trend-for-3-months/m-p/379437#M42619</link>
      <description>&lt;P&gt;index="os" sourcetype="Service" CaseNumber=* status=*  assignment=* |dedup _time,CaseNumber,assignment|streamstats current=f last(assignment) as lg, last(active) as  Active by CaseNumber | eval is_escalated= if(assignment!=lg AND assignment="Susta",1,NULL)&lt;BR /&gt;
 |eval is_resolved=if(assignment_group="Susta" AND status="Complete" AND (isnull(Active) OR Active="true"),1,NULL)| chart count(is_escalated) AS "Escalated Cases" count(is_resolved) AS "Resolved Cases" by Component&lt;/P&gt;

&lt;P&gt;For this query i need linechart.when i add timechart to this query it is showing all the components in below.It looks not gud.So can u help how to do trend for this query.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 23:12:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-display-trend-for-3-months/m-p/379437#M42619</guid>
      <dc:creator>udaypulipaka</dc:creator>
      <dc:date>2020-09-29T23:12:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to display trend for 3 months?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-display-trend-for-3-months/m-p/379438#M42620</link>
      <description>&lt;P&gt;can you try this,&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;your search |  bin span=3mon _time |stats count(ss) as count by _time
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 12 Feb 2019 12:17:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-display-trend-for-3-months/m-p/379438#M42620</guid>
      <dc:creator>vinod94</dc:creator>
      <dc:date>2019-02-12T12:17:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to display trend for 3 months?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-display-trend-for-3-months/m-p/379439#M42621</link>
      <description>&lt;P&gt;timechart  span=3mon count by ss usenull=f this is working fine.Thank u for your help&lt;/P&gt;</description>
      <pubDate>Tue, 12 Feb 2019 12:40:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-display-trend-for-3-months/m-p/379439#M42621</guid>
      <dc:creator>udaypulipaka</dc:creator>
      <dc:date>2019-02-12T12:40:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to display trend for 3 months?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-display-trend-for-3-months/m-p/379440#M42622</link>
      <description>&lt;P&gt;@udaypulipaka ,&lt;/P&gt;

&lt;P&gt;Please accept the answer if it worked for you!.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Feb 2019 06:01:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-display-trend-for-3-months/m-p/379440#M42622</guid>
      <dc:creator>vinod94</dc:creator>
      <dc:date>2019-02-13T06:01:46Z</dc:date>
    </item>
  </channel>
</rss>

