Splunk Dev

Querying in Node.js

hassaanalich296
New Member

I am trying to query and manipulate results of Splunk searches using node. I am using the oneshotSearch however, as I understand it isn't a function hence, it doesn't return anything and therefore, I am unable to access the updated values my global variable that I manipulate within the function. The question then is, how do I access the variables results outside service.oneshotSearch

 

 

var Splunk_2 = [{"Verification Code" : '', "Verification Number" : ''}]

// Run a oneshot search that returns the job's results
service.oneshotSearch(
    searchQuery,
    searchParams,
    function query_result (err, results) {
        // Display the results
        var rawIndex = results.fields.indexOf("_raw");                            
        // Print out each result and the key-value pairs we want
        for (var i = 0; i < results.rows.length; i++) {
           Splunk_2.push({"Verification Code": JSON.parse(results.rows[i][rawIndex]).data.message_body,
                         "Verification Number": JSON.parse(results.rows[i][rawIndex]).data.phone
        });
      }                           
   }
);

 

 

 

 

 

Labels (3)
0 Karma
Get Updates on the Splunk Community!

Splunk at Cisco Live 2025: Learning, Innovation, and a Little Bit of Mr. Brightside

Pack your bags (and maybe your dancing shoes)—Cisco Live is heading to San Diego, June 8–12, 2025, and Splunk ...

Splunk App Dev Community Updates – What’s New and What’s Next

Welcome to your go-to roundup of everything happening in the Splunk App Dev Community! Whether you're building ...

The Latest Cisco Integrations With Splunk Platform!

Join us for an exciting tech talk where we’ll explore the latest integrations in Cisco &#43; Splunk! We’ve ...