Splunk Search

How to add an additional column to my report (I need a hostname column).

agoktas
Communicator

Here is my search:

index=windows source="WMI:Services" State=Stopped StartMode=Auto | rex field=_raw "\nName=(?PIBM.{1,})" | chart count by SvcName | rename SvcName as "Service Name"

And I need to add another column to the right of the "Service Name" column called "Host". This way I have the windows service name associated with the host that I'm looking for.

How do I adjust my search string to add this column to the statistics table view?

Thanks!

1 Solution

sideview
SplunkTrust
SplunkTrust

I think you just need.

index=windows source="WMI:Services" State=Stopped StartMode=Auto | rex field=_raw "nName=(?PIBM.{1,})" | stats count by SvcName host | rename SvcName as "Service Name"

View solution in original post

sideview
SplunkTrust
SplunkTrust

I think you just need.

index=windows source="WMI:Services" State=Stopped StartMode=Auto | rex field=_raw "nName=(?PIBM.{1,})" | stats count by SvcName host | rename SvcName as "Service Name"

agoktas
Communicator

Thank you so much! That works perfectly! Apparently I'm a total noob when it comes to tabl'ing out my results. 😉

0 Karma

sideview
SplunkTrust
SplunkTrust

no worries. Here's a link to give you some insight into the difference between the stats and chart commands - http://answers.splunk.com/answers/32001/difference-stats-and-chart.html

0 Karma
Get Updates on the Splunk Community!

Building Reliable Asset and Identity Frameworks in Splunk ES

 Accurate asset and identity resolution is the backbone of security operations. Without it, alerts are ...

Cloud Monitoring Console - Unlocking Greater Visibility in SVC Usage Reporting

For Splunk Cloud customers, understanding and optimizing Splunk Virtual Compute (SVC) usage and resource ...

Automatic Discovery Part 3: Practical Use Cases

If you’ve enabled Automatic Discovery in your install of the Splunk Distribution of the OpenTelemetry ...