All Apps and Add-ons

How to pass search results to custom JavaScript module

kasu_praveen
Communicator

In my view I am creating a table with search results

 


| eval abc = .....
| eval def = .....
| eval ghi = .....
| table abc, def, ghi



Now I want to define custom module in same view and pass search results (Ex: abc, def, ghi) to custom module JavaScript code. How can I do that? I am not using JS SDK.

Ex: sample custom module in view

 

doSomethingWithResults

Ex: sample custom code in application.js

 
Sideview.utils.declareCustomBehavior("doSomethingWithResults", function(customBehaviorModule) {
???????
???????
???????
// Here I want to read search results "abc","def","ghi"....
});

Thanks for looking into it.

0 Karma
1 Solution

kasu_praveen
Communicator

My XML Code:

<module name="Search" layoutPanel="appHeader">
    <param name="search"> <Write your search query here> | table abc def ghi</param>
    <module name="ResultsValueSetter">
        <param name="fields">abc,def,ghi</param>
        <module name="CustomBehavior">
            <param name="customBehavior">MyCustomMethod</param> 
        </module>
    </module>
</module>

MY JavaScript Code

Sideview.utils.declareCustomBehavior("MyCustomMethod", function(MyCustomMethodList) {
        MyCustomMethodList.onContextChange = function() {
            var context = this.getContext();
            var abcValue = context.get("abc");
            var defValue = context.get("def");
            var ghiValue = context.get("ghi");
            // Write your code by utilizing above "abcValue", "defValue" and "ghiValue" values.
        }
    });

This is working as expected. Thank you @sideview (Nick) for your suggestion.

View solution in original post

kasu_praveen
Communicator

@redc I have provided my answer below.

0 Karma

kasu_praveen
Communicator

My XML Code:

<module name="Search" layoutPanel="appHeader">
    <param name="search"> <Write your search query here> | table abc def ghi</param>
    <module name="ResultsValueSetter">
        <param name="fields">abc,def,ghi</param>
        <module name="CustomBehavior">
            <param name="customBehavior">MyCustomMethod</param> 
        </module>
    </module>
</module>

MY JavaScript Code

Sideview.utils.declareCustomBehavior("MyCustomMethod", function(MyCustomMethodList) {
        MyCustomMethodList.onContextChange = function() {
            var context = this.getContext();
            var abcValue = context.get("abc");
            var defValue = context.get("def");
            var ghiValue = context.get("ghi");
            // Write your code by utilizing above "abcValue", "defValue" and "ghiValue" values.
        }
    });

This is working as expected. Thank you @sideview (Nick) for your suggestion.

redc
Builder

@kasu_praveen - did you ever get this figured out? I'd like to do the same thing.

0 Karma

sideview
SplunkTrust
SplunkTrust

If you want to do something custom where you're operating on the search result rows, then I do not think you want a splunk UI module, but rather a custom search command.

http://docs.splunk.com/Documentation/Splunk/5.0.2/AdvancedDev/SearchScripts

What exactly do you want to do with the results though? If you just want to do things with field values that are on the first row only, then look into the documentation for the ResultsValueSetter module. If you just want to display field values from the search results of the first few result rows then look into the documentation for the HTML module. Beyond these simple use cases , operating on large numbers of result rows is really not what the User Interface layer is good at and you'll want to look at writing a custom search command.

Get Updates on the Splunk Community!

Dashboards: Hiding charts while search is being executed and other uses for tokens

There are a couple of features of SimpleXML / Classic dashboards that can be used to enhance the user ...

Splunk Observability Cloud's AI Assistant in Action Series: Explaining Metrics and ...

This is the fourth post in the Splunk Observability Cloud’s AI Assistant in Action series that digs into how ...

Brains, Bytes, and Boston: Learn from the Best at .conf25

When you think of Boston, you might picture colonial charm, world-class universities, or even the crack of a ...