Getting Data In

Change host name at search time

hartfoml
Motivator

I have a search like this

sourcetype=foo | stats count by host

I have 8 hosts that report to this search and all of them have standard names but one does not.

I get this type of results:

host     count
sys1     20
sys2     25
srv1     40

I want to change the results so that srv1 shows up in the results as sys3.

as always thanks for your help....:-)

Tags (2)
0 Karma
1 Solution

Ayn
Legend

Just rewrite the host value in your search before the stats command.

sourcetype=foo | eval host=if(host=="srv1","sys3",host) | stats count by host

View solution in original post

Ayn
Legend

Just rewrite the host value in your search before the stats command.

sourcetype=foo | eval host=if(host=="srv1","sys3",host) | stats count by host

hartfoml
Motivator

thanks much

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...