Getting Data In

Custom search command Values for these required options are missing: ...

Unige2021
Loves-to-Learn

I need to pass to my python custom search command two values: and y.

I found some examples where it's shown this:

 

 

x = Option(require=True, validate=validators.Fieldname())
y = Option(require=True, validate=validators.Fieldname())

 

 

 

Now I simply run my script by simply entering my_script x=50, y=25

Unfortunately I get this errors:

Illegal value: x=50
Illegal value: y=25
Values for these required options are missing: x, y

 

I cannot find neither the problem nor anyone who is facing this problem.

The code I copied from is an example taken from this url: Create a custom Splunk search commands with Python3 | HoldMyBeer (holdmybeersecurity.com)

 

Thank you in advance! 

Labels (1)
Tags (1)
0 Karma

s2_splunk
Splunk Employee
Splunk Employee

I am not an expert on this, but it seems like the way you have it implemented, the code will check if the values for x and y are field names, when you likely want to validate that they are integers.

Can you try changing to this and see if that helps:

x = Option(require=True, validate=validators.Integer())
y = Option(require=True, validate=validators.Integer())

If it does, specifying my_script x="abc" y="def" should throw an error.

As you currently have it, validation would support my_script x=some_event_field  y=some_other_event_field

At least that's my understanding on how it works. You can find a list of all implemented validators here. 

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

What Is Splunk? Here’s What You Can Do with Splunk

Hey Splunk Community, we know you know Splunk. You likely leverage its unparalleled ability to ingest, index, ...

Level Up Your .conf25: Splunk Arcade Comes to Boston

With .conf25 right around the corner in Boston, there’s a lot to look forward to — inspiring keynotes, ...

Manual Instrumentation with Splunk Observability Cloud: How to Instrument Frontend ...

Although it might seem daunting, as we’ve seen in this series, manual instrumentation can be straightforward ...