Splunk Search

Joining multiple field value count using a common text

att35
Builder

Hi,

We have few appliances spread across various data centers feeding logs into Splunk. Each Data center has 2 or more of such appliances depending on load. Hostname for the device is already an extracted field and is being used to chart individual count.

What I would like to do now, is to combine the results based on DC but the problem is that the DC identifier is part of the hostname and not a separate field. e.g. DC01APP1, DC01APP2, DC02APP1, DC02APP2. Now, instead of listing count for all 4 individually, I'd like to list for "DC01" and "DC02", where "DC01" should contain the aggregate count for DC01(APP1/APP2).

Is there any eval function which might help in achieving this or would i have to extract the DC part again from an existing field?

Many Thanks,

~ Abhi

0 Karma
1 Solution

somesoni2
Revered Legend

Yes there is

your base search giving count by hostname | eval hostname=substr(hostname,1,4) | stats sum(count) as count by hostname

View solution in original post

richgalloway
SplunkTrust
SplunkTrust

You could extract the DC name using rex and then aggregate on the new field. For example,

your base search | rex field=hostname "(?<DC>DC\d\d)" | stats count by DC ...
---
If this reply helps you, Karma would be appreciated.

somesoni2
Revered Legend

Yes there is

your base search giving count by hostname | eval hostname=substr(hostname,1,4) | stats sum(count) as count by hostname

att35
Builder

Thank you. Exactly what I was looking for.

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!

Event Series: Telemetry Pipeline Management

Balancing Scale and Spend: Gaining Control Over High-Volume Metrics in Splunk Observability Cloud As ...

Kick the Tires Before You Commit: A Hands-On Tour of the Splunk Observability Cloud ...

Evaluating an enterprise observability platform usually goes like this: fill out a form, get a free trial with ...

Deep insights, no barriers: Splunk Observability Cloud Free Edition

As software delivery cycles continue to accelerate, observability shouldn’t be a luxury — it should be a ...