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

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

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