Dashboards & Visualizations

How to get two different field names

aditsss
Motivator

Hi Everyone,

I am using below query:

index=abc  ns=blazegateway|stats count by app_name|eval f1="hg"

I am getting result as :

app_name                     count                  f1

abc                                       1                          hg

bcd                                          2                         hg

My requirement is for my column f1 I am getting hg in both rows I want some other name in 2nd row

What changes I should do in my query

Labels (3)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust

Depending on how you determine what value should go in f1, you could use a case function, e.g.

 

| eval f1=case(app_name="abc","hg")
| eval f2=case(app_name="bcd","xy")

 

View solution in original post

aditsss
Motivator

@ITWhisperer 

 

Thank you so much

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Depending on how you determine what value should go in f1, you could use a case function, e.g.

 

| eval f1=case(app_name="abc","hg")
| eval f2=case(app_name="bcd","xy")

 

Get Updates on the Splunk Community!

Index This | What’s a riddle wrapped in an enigma?

September 2025 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with this ...

BORE at .conf25

Boss Of Regular Expression (BORE) was an interactive session run again this year at .conf25 by the brilliant ...

OpenTelemetry for Legacy Apps? Yes, You Can!

This article is a follow-up to my previous article posted on the OpenTelemetry Blog, "Your Critical Legacy App ...