Splunk Search

How do you combine two or more values from search results into one?

igordon
New Member

I need to produce a report that shows average use of an app over a certain period of time. I noticed in the log the app name is not consistent. For example the same app will show up with several variations but it is the same app. So it might look like

Field 1
app=AAA
app=AaA
app=aaa

Here's what I have so far:

index=system action=successful application=app | stats count by date_month | stats avg(count) as avg_count | eval avg_count=round(avg_count) | fieldformat avg_count=tostring(avg_count,"commas")

I want the search to count all the variations of the app name but only use one value. So the desired output would be:

application avg_count
AAA 10

0 Karma

cmerriman
Super Champion

you might want to create a lookup table with all variations of the app name, or a macro to rename them to be the same. i run into a similar thing with apps, mainly when they move to production and all of a sudden have a new name, but i'd like them to be combined as the same name. i have created a macro with renames.
Settings>Advanced Search>Add new Search macros

what i have is called RenameApps and the definition is an eval like so: |eval appname=case(app="app1" OR app="App1","app",app="App2","app2"....)

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi,
Insert
| eval app=upper(app)
In Your search after the first search and before the first stata.
Bye.
Giuseppe

0 Karma

horsefez
Motivator

Hi igordon,

you could do a

| eval app=upper(app)
or
| eval app=lower(app)

which is a sneaky trick.

Get Updates on the Splunk Community!

More Ways To Control Your Costs With Archived Metrics | Register for Tech Talk

Tuesday, May 14, 2024  |  11AM PT / 2PM ET Register to Attend Join us for this Tech Talk and learn how to ...

.conf24 | Personalize your .conf experience with Learning Paths!

Personalize your .conf24 Experience Learning paths allow you to level up your skill sets and dive deeper ...

Threat Hunting Unlocked: How to Uplevel Your Threat Hunting With the PEAK Framework ...

WATCH NOWAs AI starts tackling low level alerts, it's more critical than ever to uplevel your threat hunting ...