Splunk Search

Why am I getting "Unknown search command ..." when trying to run a macro form the Java SDK?

lattar
Engager

We have a macro set up under 'Advanced search » Search macros', it takes 3 parameters (host, neighborIP, days). To run it from the search box in Splunk I simply put `my_macro(*,*,31)` which works fine. When I try to run this using the Java SDK I get the message "Unknown search command 'host'."
Below is the relevant part of the code

...
jobArgs.setExecutionMode(JobArgs.ExecutionMode.NORMAL);
JobCollection jobs = service.getJobs();
Job job = jobs.create("`my_macro(*,*,31)`", jobArgs);

Needless to say I'm new to Splunk and I may be being a bit dumb but, I can't seem to find information about executing macros with parameters from the SDK in the splunk documentation.

Any help would be very much appreciated

Tags (4)
1 Solution

martin_mueller
SplunkTrust
SplunkTrust

You may need to prepend the search command to your search job. In the web interface this is done implicitly.

View solution in original post

martin_mueller
SplunkTrust
SplunkTrust

You may need to prepend the search command to your search job. In the web interface this is done implicitly.

lattar
Engager

Thanks very much.

For anyone else with the same issue I changed the command to :

Job job = jobs.create("search `my_macro(*,*,31)`", jobArgs);
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...