Splunk Search

How to aggregate data from CSV file in Splunk Chart?

rus7am
Explorer

Hi guys,

I have CSV file with following structure,

TicketNumber,OpenDate
1,date1
2,date1
3,date1
4,date2
5,date3
6,date3

And I need to build bars with information on how many tickets were opened for specific date. I mean:

Date1 = 3 tickets
Date2 = 3 tickets + 1 ticket = 4 tickets
Date3 = 4 tickets + 2 tickets = 6 tickets

Is it possible?

For now I've built a graph with "how many tickets were opened in date1, date2, date3", but I need some kind of aggregation.

1 Solution

martin_mueller
SplunkTrust
SplunkTrust

You can use your tickets opened per each day to accumulate that:

... | stats count by OpenDate | accum count as openTickets

Verify that your rows are sorted by date correctly before the accum.

View solution in original post

martin_mueller
SplunkTrust
SplunkTrust

You can use your tickets opened per each day to accumulate that:

... | stats count by OpenDate | accum count as openTickets

Verify that your rows are sorted by date correctly before the accum.

martin_mueller
SplunkTrust
SplunkTrust

Great. Don't forget to mark this as solved.

0 Karma

rus7am
Explorer

thanks a lot! that's works!

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...