Splunk Search

How to build a two way table?

Clovisa
Path Finder

Hi !

I am trying to build a two way table like :

|          | Male | Female | Total |
| Child    | 2    | 3      | 5     |
| Teenager | 2    | 1      | 3     |
| Adult    | 10   | 11     | 21    |

I see how to count by gender or by age but I don't see how I can have both in the same table. Your help will be very appreciated, thanks!

Tags (2)
0 Karma
1 Solution

gcusello
SplunkTrust
SplunkTrust

Hi Clovisa,
see the chart command ( http://docs.splunk.com/Documentation/Splunk/7.1.1/SearchReference/Chart ).
you should try something like this

index=my_index
| chart count OVER age BY gender
| addtotals
| addcoltotals labelfield=age label="Total"

Bye.
Giuseppe

View solution in original post

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi Clovisa,
see the chart command ( http://docs.splunk.com/Documentation/Splunk/7.1.1/SearchReference/Chart ).
you should try something like this

index=my_index
| chart count OVER age BY gender
| addtotals
| addcoltotals labelfield=age label="Total"

Bye.
Giuseppe

0 Karma

Clovisa
Path Finder

It's perfect, thanks a lot Giuseppe !

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

[Puzzles] Solve, Learn, Repeat: Character substitutions with Regular Expressions

This challenge was first posted on Slack #puzzles channelFor BORE at .conf23, we had a puzzle question which ...

Splunk Community Badges!

  Hey everyone! Ready to earn some serious bragging rights in the community? Along with our existing badges ...

[Puzzles] Solve, Learn, Repeat: Matching cron expressions

This puzzle (first published here) is based on matching timestamps to cron expressions.All the timestamps ...