Splunk Search

Want to add a custom slider input

sumeetsirohi1
New Member

Hi,

How can i add a custom input which will be a slider with values ranging from 0 - 100 and pass the token value to the search query.

0 Karma

gaurav_maniar
Builder

hi,

Add html input in the dashboard and handle change values from javascript to set token.

<form script="html_input.js">
    <fieldset submitButton="true">
        <html>
            <label>Range 0-20 step=2</label>
            <input type="range" id="slider_input" value="10" min="0" max="20" step="1"/>
        </html>
    </fieldset>
    <row>
        <panel>
            <table>
                <search>
                    <query>|makeresults | eval slider_value=$slider_value$</query>
                    <earliest>-1h@h</earliest>
                    <latest>now</latest>
                </search>
            </table>
        </panel>
    </row>
<form>

html_input.js

require([
    'underscore',
    'jquery',
    'splunkjs/mvc',
    'splunkjs/mvc/simplexml/ready!'
 ], function(_, $, mvc){

    var tokens = mvc.Components.get('default');

    $(document).on("input change", "#slider_input", function(){
        tokens.set("slider_value", $(this).val());
    });
});

UPDATE
at line 10, element id was used without #.

0 Karma

sumeetsirohi1
New Member

I tried the above the js file but $slider_value$ is not taking the value from slider.Just says "waiting for input"

0 Karma

ND
Path Finder

Yes, its saying waiting for input.

can someone explain , how we are passing token value in table query for search for slider. after eval Slider_value= $Slider_Value$

@sumeetsirohi1 @patrickprodoehl @gaurav_maniar 

thanks.

0 Karma

gaurav_maniar
Builder

answer updated.

Splunk javascript is stored in browser cache and in Splunk javascript changes are not loaded automatically on browser side.
So once you update your script, goto https://splunk_host:8000/en-US/_bump and click Bump Version it will reload the updated javascript.

accept the answer if it helps.

0 Karma

patrickprodoehl
Explorer

amendment: the first code sections contains a closing form tag, which is missing the closing / in </form>.

Thanks for sharing the answer! Works like a charm for me!

0 Karma
Get Updates on the Splunk Community!

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...