Splunk Search

Problem with multiple rows in a table (extended statistic)

C_Sparn
Communicator

Hello,

I'm looking for a possibility to create a statistic like this one:

directupload.net/file/d/3630/jzf8nu84_png.htm

Is that possible with the splunk search language?
Greetings

Tags (3)
0 Karma
1 Solution

martin_mueller
SplunkTrust
SplunkTrust

That looks a lot like a stats count by Date Type User - it'll fill those empty cells as well, but that's cosmetic... and could be fixed in post.

View solution in original post

0 Karma

martin_mueller
SplunkTrust
SplunkTrust

That looks a lot like a stats count by Date Type User - it'll fill those empty cells as well, but that's cosmetic... and could be fixed in post.

0 Karma

martin_mueller
SplunkTrust
SplunkTrust

You can add such sub-summary columns like this:

... | eventstats sum(count) by Date Type

For removing duplicate Date values you can do this:

... | streamstats current=f window=1 last(Date) as last_date | eval Date = if(Date == last_date, null, Date) | fields - last_date

It'll copy over the value from the previous row and discard the cell if it's equal to that.

0 Karma

C_Sparn
Communicator

All in all you are right with grouping by multiple fields!
Now I get 1 row foreach time and all cells filled.
But how can I fix that "cosmetic" issue in post?
And is it possible to add another column at the end that has just:

count(time) by Date Type

If I use appendcols with this count it appends the values at the wrong rows beginning at first row!

Thanks for help

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Community Content Calendar, September edition

Welcome to another insightful post from our Community Content Calendar! We're thrilled to continue bringing ...

Splunkbase Unveils New App Listing Management Public Preview

Splunkbase Unveils New App Listing Management Public PreviewWe're thrilled to announce the public preview of ...

Leveraging Automated Threat Analysis Across the Splunk Ecosystem

Are you leveraging automation to its fullest potential in your threat detection strategy?Our upcoming Security ...