Splunk Search

Why am I getting "TypeError: e.replace is not a function" using SearchManager with eval in the search?

vikassanap2011
New Member
new SearchManager({
                id: "mysearch1",
                earliest_time: "-24h@h",
                latest_time: "now",
                search: "openstack::* node::* command=w |dedup node|eval critical = if( load2 > 1.25,load2,0)|table node load2 critical",
            });

Console error:

TypeError: e.replace is not a function


...ngToFieldList(e))},s=function(e){return e.replace(/^\s*/,"").replace(/\s*$/,"")}...
0 Karma

koshyk
Super Champion

I guess you got a "comma" after the "search" param, thus the function not ending properly

0 Karma

vganjare
Builder

Try using Following code:

new SearchManager({
     id: "mysearch1",
     earliest_time: "-24h@h",
     latest_time: "now",
     search: "openstack::* node::* command=w |dedup node|eval critical = if( load2 > 1.25,load2,0)|table node load2 critical"
 });

Please note: Removed the last comma (just after search string).

Thanks!!

0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...