Splunk Search

Does the fields command support globbing/wildcard matching?

chris
Motivator

Im trying to reduce the fields of my resultset by using the fields command with the '-' option. This does not appear to work:

index=* | head 10 | eval ip="194.10.10.10" | table ip,_time | geoip ip | fields - ip_* 

I can get around the problem for this case by searching differently:

index=* | head 10 | eval ip="194.10.10.10"  | geoip ip  | table ip,_time

...but I'm trying to find out how field command works.

The documentation shows an example where the * can be used if you want to keep fields (without using the '-').

This does work

index=* | head 10 | eval ip="194.10.10.10" | table ip,_time | geoip ip | fields ip_l*

This does not work:

index=* | head 10 | eval ip="194.10.10.10" | table ip,_time | geoip ip | fields - ip_l*

Any Ideas?

Thanks
Chris

0 Karma

HattrickNZ
Motivator

using 6.3.
having a similar issue:

For clarification:
| fields ip_l* this wild card will work in showing all the fields ip_l
but if I try and remove them.
| fields - ip_l* this does not remove the columns/field but it does remove the values in them columns ip_l*. I want the fields/columns to be removed as well.

hmmm....

0 Karma

alacercogitatus
SplunkTrust
SplunkTrust

This works for me. What version are you using?

0 Karma

chris
Motivator

Hi Ayn, you're right. I forgot to insert the '-' option to the last command. I updated the question.

0 Karma

Ayn
Legend

The two last examples seem to be identical?

0 Karma
Get Updates on the Splunk Community!

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

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

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...