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!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

Splunk is officially part of Cisco

Revolutionizing how our customers build resilience across their entire digital footprint.   Splunk ...

Splunk APM & RUM | Planned Maintenance March 26 - March 28, 2024

There will be planned maintenance for Splunk APM and RUM between March 26, 2024 and March 28, 2024 as ...