Splunk Search

help on transpose command

jip31
Motivator

hello

 

In the search below, I need to display anything if the Hostname is not found

Actually, I have the fields displayed even if the hostname doesnt exists (see attachment here https://www.cjoint.com/c/KCmgUBEZndg)

How to display anything if the hostname doesnt exists please??

 

`wire` 
| fields AP_NAME USERNAME LAST_SEEN 
| lookup ap.csv NAME as AP_NAME OUTPUT Building Country Site  
| rename USERNAME as host 
| eval time = strftime(_time, "%d-%m-%y %H:%M") 
| stats latest(time) as "Last check date", last(AP_NAME) as "Access Point", last(Site) as "Geolocation site", last(Building) as "Geolocation building" by host 
| rename host as Hostname
| search Hostname=X3020131
| transpose 0 column_name="Geolocation items" header_field=header 
| rename "row 1" as "Geolocation results"

 

 

Labels (1)
Tags (1)
0 Karma
1 Solution

scelikok
SplunkTrust
SplunkTrust

Hi @jip31,

You can set include_empty parameter of transpose command to false;

`wire` 
| fields AP_NAME USERNAME LAST_SEEN 
| lookup ap.csv NAME as AP_NAME OUTPUT Building Country Site  
| rename USERNAME as host 
| eval time = strftime(_time, "%d-%m-%y %H:%M") 
| stats latest(time) as "Last check date", last(AP_NAME) as "Access Point", last(Site) as "Geolocation site", last(Building) as "Geolocation building" by host 
| rename host as Hostname
| search Hostname=X3020131
| transpose 0 column_name="Geolocation items" header_field=header include_empty=false
| rename "row 1" as "Geolocation results"
If this reply helps you an upvote and "Accept as Solution" is appreciated.

View solution in original post

0 Karma

scelikok
SplunkTrust
SplunkTrust

Hi @jip31,

You can set include_empty parameter of transpose command to false;

`wire` 
| fields AP_NAME USERNAME LAST_SEEN 
| lookup ap.csv NAME as AP_NAME OUTPUT Building Country Site  
| rename USERNAME as host 
| eval time = strftime(_time, "%d-%m-%y %H:%M") 
| stats latest(time) as "Last check date", last(AP_NAME) as "Access Point", last(Site) as "Geolocation site", last(Building) as "Geolocation building" by host 
| rename host as Hostname
| search Hostname=X3020131
| transpose 0 column_name="Geolocation items" header_field=header include_empty=false
| rename "row 1" as "Geolocation results"
If this reply helps you an upvote and "Accept as Solution" is appreciated.
0 Karma

jip31
Motivator

thanks it works

Tags (1)
0 Karma
Get Updates on the Splunk Community!

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 ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...

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 ...