Pardon me if someone has already asked this question, but since I haven't found a satisfactory answer so posting this query .
I am a beginner in Splunk. Just wanted to know if what I am trying to do is feasible or not .
I am trying to make a Splunk dashboard where it has 3 panels. I want to pass the result of one panel to another ,where it can be used in the query . Simply put, I want to find the count of an event : Firstly Month wise from a year(span=1mon). Then select the highest count month and find the count day wise(span=1d) for that month. From this month I want to select the day with highest count and then find the hour(span=1h) with highest event count. Right now I am doing this whole process manually.
- Find Month with max event count -> max_month
- Find Day with max event count from the max_month -> max_day
- Find Hour with max event count from max_day
Is it possible to automate this process using a dashboard where it can automatically select the max month, day and hour ?
I tried using nested query but wasnt able to make any significant progress .