Hello All,
I have dashboard where am calling reload of props.conf file through `| extract reload=T ` command, but some how the props.conf is not loading (means it's not taking updated calculated fields).
The same code if i use for other command it working perfectly fine, can any one help me where am wrong?
my script
require([
"jquery",
"splunkjs/mvc/searchmanager",
"splunkjs/mvc/simplexml/ready!"
], function(
$,
SearchManager
) {
var mysearch = new SearchManager({
id: "mysearch",
autostart: "false",
search: "| extract reload=T"
});
$("#btn-submit").on("click Reload", function (){
var ok = confirm("Yahoo!");
if ( ok==true ){
mysearch.startSearch();
} else {
alert('user did not click ok!');
}
});
my XML
↧