Splunk Search

Splunk query to build a table with total event count, sub event count and sub event in percent

cbiraris
Path Finder

Hi Team,
i am trying to design a query which show be result like total event count, sub event count and sub event in percent. can you please help with query

For example below table :
Work_Month_week | total_week_day|work day of week| Number of work hours | percent work hours
1                                      |  3                               | Mon                          | 2                                            |     %                                                                                                                              |Tus                             | 4                                            |     % 
                                                                              |Tus                             | 4                                            |     % 
2                                      |  2                               | Mon                          | 2                                            |     %                                                                                                                              |Tus                             | 4                                            |     % 
3                                      |  3                               | Mon                          | 3                                            |     %                                                                                                                              |Tus                             |  5                                           |     % 
                                                                              |thu                             | 4                                            |     % 

Labels (1)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust

It is usually easier for us to help you when you shows us what events you are working with, but in lieu of that, assuming you have events with the following fields: Work_Month_week, "work day of week", "Number of work hours", you could try something like this

| table Work_Month_week, "work day of week", "Number of work hours"
| eventstats count as total_week_day sum("Number of work hours") as Week_total by Work_Month_week
| eval "percent work hours"=100*'Number of work hours'/Week_total

View solution in original post

ITWhisperer
SplunkTrust
SplunkTrust

It is usually easier for us to help you when you shows us what events you are working with, but in lieu of that, assuming you have events with the following fields: Work_Month_week, "work day of week", "Number of work hours", you could try something like this

| table Work_Month_week, "work day of week", "Number of work hours"
| eventstats count as total_week_day sum("Number of work hours") as Week_total by Work_Month_week
| eval "percent work hours"=100*'Number of work hours'/Week_total

yuanliu
SplunkTrust
SplunkTrust

First things first.  What is a "sub event"?  How do you get "subevent"?  How do you count "subevent"?  Secondly, please construct your desired output like a real table (e.g., by using the table template above, craft HTML table, or some means suitable for you).  The illustration you give is not even aligned and impossible to interpret.

0 Karma
Get Updates on the Splunk Community!

Pro Tips for First-Time .conf Attendees: Advice from SplunkTrust

Heading to your first .Conf? You’re in for an unforgettable ride — learning, networking, swag collecting, ...

Raise Your Skills at the .conf25 Builder Bar: Your Splunk Developer Destination

Calling all Splunk developers, custom SPL builders, dashboarders, and Splunkbase app creators – the Builder ...

Hunt Smarter, Not Harder: Discover New SPL “Recipes” in Our Threat Hunting Webinar

Are you ready to take your threat hunting skills to the next level? As Splunk community members, you know the ...