Dashboards & Visualizations

How to display trend for 3 months?

udaypulipaka
Observer

Hi,

How can i display last 3 months data monthly wise count as trend dashboard.To check whether monthly increasing or decreaing data.

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

How can i display monthly wise count as trend in dashboard

Tags (1)
0 Karma
1 Solution

vinod94
Contributor

@udaypulipaka ,

Please accept the answer if it worked for you!.

View solution in original post

0 Karma

vinod94
Contributor

@udaypulipaka ,

Please accept the answer if it worked for you!.

0 Karma

vinod94
Contributor

Try this,

You can use span in timechart

https://docs.splunk.com/Documentation/SplunkCloud/7.2.3/SearchReference/Timechart

Your search |  timechart  span=3mon count by ss usenull=f
0 Karma

udaypulipaka
Observer

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)
|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

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.

0 Karma

vinod94
Contributor

can you try this,

your search |  bin span=3mon _time |stats count(ss) as count by _time
0 Karma

udaypulipaka
Observer

timechart span=3mon count by ss usenull=f this is working fine.Thank u for your help

0 Karma
Get Updates on the Splunk Community!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...