Splunk Search

Looking for a search to categorize by hosts..??

prakash007
Builder

I am expecting a single search to categorize by hosts with individual count and total count by category...

SET-A Count _time
host=web01 25
host=web02 55
SET-A Total 80

SET-B Count _time
host=web05 15
host=web06 20
SET-B-Total 35

Tags (1)
0 Karma
1 Solution

somesoni2
Revered Legend

You can if you have that category column available in the logs OR can be added later (eval-case or lookup etc).

e.g.

your base search giving fields host, _time
| ...some logic to get category field there...
| bucket _time span=10m  ***assuming you want to bucket time. update as required***
| stats count by _time category host
| appendpipe [| stats sum(count) as count by _time category | eval category=category."- Total"]
| stats list(host) as host list(count) as count by _time category

View solution in original post

0 Karma

somesoni2
Revered Legend

You can if you have that category column available in the logs OR can be added later (eval-case or lookup etc).

e.g.

your base search giving fields host, _time
| ...some logic to get category field there...
| bucket _time span=10m  ***assuming you want to bucket time. update as required***
| stats count by _time category host
| appendpipe [| stats sum(count) as count by _time category | eval category=category."- Total"]
| stats list(host) as host list(count) as count by _time category
0 Karma
Get Updates on the Splunk Community!

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...