All Apps and Add-ons

Display the selected month data using dropdown in Splunk dashboard

Nith1
Path Finder

Hi,

Im new to Splunk and my task is to built a Splunk Dashboard where i must have a dropdown and have 12 months listed in it and the dashboard must populate data only for the selected month. Can someone let me know the splunk query to build the same.

Also how to set the field for value and field for label.

My logs contains fields like 
IssueCreated, Key,  Project Id, Project Name, IssueType, Status, Summary, Assigned to ,Assigned By

Thanks

 

 

Labels (2)
Tags (1)
0 Karma

manjunathmeti
Champion

Hi @Nith1,

Below works for months in the current year. Create a dropdown like below.

<input type="dropdown" token="month">
      <label>Select Month</label>
      <choice value="earliest=@y latest=@y+1mon">January</choice>
      <choice value="earliest=@y+1mon latest=@y+2mon">February</choice>
      <choice value="earliest=@y+2mon latest=@y+3mon">March</choice>
      <choice value="earliest=@y+3mon latest=@y+4mon">April</choice>
      <choice value="earliest=@y+4mon latest=@y+5mon">May</choice>
</input>


And use the token month in your base search.

index=INDEXNAME $month$ | table IssueCreated, Key, "Project Id", "Project Name", IssueType, Status, Summary

 

If this reply helps you, an upvote/like would be appreciated.



Get Updates on the Splunk Community!

September Community Champions: A Shoutout to Our Contributors!

As we close the books on another fantastic month, we want to take a moment to celebrate the people who are the ...

Community Content Calendar, October Edition

Welcome to the October edition of our Community Spotlight! The Splunk Community is a treasure trove of ...

SOC4Kafka - New Kafka Connector Powered by OpenTelemetry

The new SOC4Kafka connector, built on OpenTelemetry, enables the collection of Kafka messages and forwards ...