Splunk Search

How can I pass a variable to the tail command?

terryloar
Path Finder

...
| tail 200

works fine.
...
| eval tail_value=200
| tail tail_value

throws this error:
Error in 'tail' command: The number of results must be a positive number.

I've used tokens as the tail argument but a simple variable is not recognized. For example:
...
| tail $token_from_dropdown$

works.

We've written a cumbersome work-around, but I know I'm missing the simple solution.

Thanks.

0 Karma
1 Solution

jhupka
Path Finder

One possibility is to get the dynamic value via a subsearch:

index=_internal | tail [ | stats count | eval search=10 | fields search ]

That will effectively expand to a search that looks like this:

 index=_internal | tail ((10))

So in your case just come up with a subsearch that dynamically obtains your value.

View solution in original post

0 Karma

jhupka
Path Finder

One possibility is to get the dynamic value via a subsearch:

index=_internal | tail [ | stats count | eval search=10 | fields search ]

That will effectively expand to a search that looks like this:

 index=_internal | tail ((10))

So in your case just come up with a subsearch that dynamically obtains your value.

0 Karma

terryloar
Path Finder

Good, simple solution. Thanks.

0 Karma
Get Updates on the Splunk Community!

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...

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