Splunk Search

How to breakdown ticket data and create line chart?

elloyd4
Explorer

I am trying to display a line chart that counts in a 15min spans throughout the course of a day,
the number of tickets that were opened to my group by looking for my specific group name,
and only counting one time- the earliest time my group name appears in that ticket and treating
that as the time the ticket was opened to my group.

The only problem being that my group name will show multiple times in the ticket as we attempt to contact customers and tickets can leave our group to be sent to other groups throughout the day.

sourcetype=TicketSource
| stats NumberOfTickets=count(eval(searchmatch("MyGoupName")))
| dedup TicketNumbers
| bucket span=15m _time
| stats sum(NumberOfTickets) as "Number of tickets opened" by  _time
0 Karma

praphulla1
Path Finder
count(eval(searchmatch("MyGoupName")))

instead of stats on the condition. you can filter the data on the condition and then use timechart.

 sourcetype=TicketSource
 | dedup TicketNumbers
| eval mygroup=if(searchmatch("MyGoupName"), true, false)
| search mygroup=true
| timechart count span=15m
0 Karma

elloyd4
Explorer

Thank you for trying to help, but I'm still having trouble. Let me try to explain my situation a bit better in hopes that it may clear things up.

Im trying to count how many tickets are assigned to my group per hour by searching for the name of my group in the tickets and counting how many times it shows up. The problem is that the group name may show multiple times in a single ticket which causes my results to display a count for for each time the name appears in a single ticket instead of a count by ticket of the earliest time the group name appears in the ticket.

sourcetype=TicketDataSource AssignmentGroupField="MyGroupName" 
| dedup TicketNumber 
| timechart count span=1h  
0 Karma

elloyd4
Explorer

Im sorry but its just not working out. Im sure your advice would help under different circumstances, and I appreciate you. I just cant help to think that Im missing something.

0 Karma

praphulla1
Path Finder

use
AssignmentGroupField="MyGroupName"

after
dedup TicketNumber

This will ensure you will search for your group on the latest event related to the TicketNumber

0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

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 GA in US-AWS!

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