Splunk Search

How do I output the Search Managers results value?

kedjjang
Path Finder

var deps = [
"jquery",
"splunkjs/ready!",
"splunkjs/mvc/searchmanager"
];
require(deps, function(mvc) {
// Load individual components
var SearchManager = require("splunkjs/mvc/searchmanager");

    // Create the search manager
    var mysearch = new SearchManager({
        id: "search1",
        app: "search",
         earliest_time: "-7d@d",
                     latest_time: "now",
        cache: false,
        search: "index="test_summary" | eval result = 99999 | fields result" 
    });

    mysearch.on('search:failed', function(properties) {
        // Print the entire properties object
        console.log("FAILED:", properties);
        $("#aa").text("Failed!");
    });

    mysearch.on('search:progress', function(properties) {
        // Print just the event count from the search job
        console.log("IN PROGRESS.\nEvents so far:", properties.content.eventCount);
       $("#aa").text("In progress with " + properties.content.eventCount + " events...");
    });

    mysearch.on('search:done', function(properties) {
        // Print the search job properties
        console.log("DONE!\nSearch job properties:", properties.content);            
    $("#aa").text("Done!"+properties.content);
    });
});

I want to output the result to the spl ("# aa").
How do I output the results of the spl?

Tags (2)
0 Karma
1 Solution

acharlieh
Influencer

Typically you would create some kind of View Object (be it a table or chart of some kind, that would reference the manager, and would render the results in an element.)

The Web Framework Docs have a few examples of this. It looks like you followed the Search Progress Events Example but it sounds like you would be interested in the Basic Template Example which renders events in a ChartView and an EventsViewerView. Or this other one that uses a TableView.

View solution in original post

piebob
Splunk Employee
Splunk Employee

please don't yell. i am going to remove all the extra question marks.
please provide more details about what you're trying to do.

acharlieh
Influencer

Typically you would create some kind of View Object (be it a table or chart of some kind, that would reference the manager, and would render the results in an element.)

The Web Framework Docs have a few examples of this. It looks like you followed the Search Progress Events Example but it sounds like you would be interested in the Basic Template Example which renders events in a ChartView and an EventsViewerView. Or this other one that uses a TableView.

Get Updates on the Splunk Community!

Observe and Secure All Apps with Splunk

  Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

Splunk Decoded: Business Transactions vs Business IQ

It’s the morning of Black Friday, and your e-commerce site is handling 10x normal traffic. Orders are flowing, ...

Fastest way to demo Observability

I’ve been having a lot of fun learning about Kubernetes and Observability. I set myself an interesting ...