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
Get Updates on the Splunk Community!

Observe and Secure All Apps with Splunk

  Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

Splunk Decoded: Business Transactions vs Business IQ

It’s the morning of Black Friday, and your e-commerce site is handling 10x normal traffic. Orders are flowing, ...

Fastest way to demo Observability

I’ve been having a lot of fun learning about Kubernetes and Observability. I set myself an interesting ...