Dashboards & Visualizations

Could I make the rangemap show Loading rather than N/A before it's search done?

flora123
Path Finder

Hi all,

I use rangemap to show results. Before the search goes done, the range will show [N/A].

Could I make the rangemap show [Loading] before it's search done?

Thanks a lot. 😃

Tags (1)
0 Karma
1 Solution

sideview
SplunkTrust
SplunkTrust

I had a similar problem when developing the Deployment Monitor app. While the circumstances were different and the reason I was getting the "N/A" were not the same, the patch I used would work for you I think.

If you put this in $SPLUNK_HOME/etc/apps/<appname>/appserver/static/application.js, you can basically change that N/A to whatever you like. Here I change it to "Loading...".

if (Splunk.Module.SingleValue) {
    Splunk.Module.SingleValue = $.klass(Splunk.Module.SingleValue, {
        renderResults: function($super, result) {
            var retVal = $super(result);
            if (result=="N/A") {
                $(this._result_element).text("Loading...");
            }
            return retVal;
        }
    });
}

View solution in original post

sideview
SplunkTrust
SplunkTrust

I had a similar problem when developing the Deployment Monitor app. While the circumstances were different and the reason I was getting the "N/A" were not the same, the patch I used would work for you I think.

If you put this in $SPLUNK_HOME/etc/apps/<appname>/appserver/static/application.js, you can basically change that N/A to whatever you like. Here I change it to "Loading...".

if (Splunk.Module.SingleValue) {
    Splunk.Module.SingleValue = $.klass(Splunk.Module.SingleValue, {
        renderResults: function($super, result) {
            var retVal = $super(result);
            if (result=="N/A") {
                $(this._result_element).text("Loading...");
            }
            return retVal;
        }
    });
}

flora123
Path Finder

Thanks a lot.It's so cool!

0 Karma
Get Updates on the Splunk Community!

Database Performance Sidebar Panel Now on APM Database Query Performance & Service ...

We’ve streamlined the troubleshooting experience for database-related service issues by adding a database ...

IM Landing Page Filter - Now Available

We’ve added the capability for you to filter across the summary details on the main Infrastructure Monitoring ...

Dynamic Links from Alerts to IM Navigators - New in Observability Cloud

Splunk continues to improve the troubleshooting experience in Observability Cloud with this latest enhancement ...