Dashboards & Visualizations

JavaScript To create a saved search

qfjp
Explorer

// Retrieve the collection of saved searches

var mySavedSearches = service.savedSearches();

// Specify a name and search query

var searchName = "Test Search";

// Note: Do not include the 'search' keyword for a saved search

var searchQuery = "* | head 10";

// Create the saved search

mySavedSearches.create({
name: searchName,
search: searchQuery
}, function(err, newSearch) {
console.log("A new saved search was created");
});

Do not know is that in the above function.
How do I set time and schedule?

jameshgibson
Path Finder

You need to set a few more options, here is an example that would schedule the job to run every 10mins over the previous month.

opts = { name: "searchname", 
         search: "* | head 10", 
         is_scheduled: 1, 
         cron_schedule: "*/10 * * * *",
         'dispatch.earliest_time': '-1mon@d',
         'dispatch.latest_time': 'now',
};


mySavedSearches.create(opts, function(err, newSearch) {
    console.log("created!");
}); 
0 Karma

jameshgibson
Path Finder

your welcome, please feel free to vote the answer up or accept 😉

0 Karma

qfjp
Explorer

Thanks!! Were very helpful.

0 Karma

linu1988
Champion

Please refer this documentation for the Savedsearch parameters:

_http://dev.splunk.com/view/SP-CAAAEKZ

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...