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!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...