Spread our blog

How to add scroll bar in the dashboard panel?

In a Splunk dashboard panel we can add lots of visualization according to our need, but in case of statistical table there can be numerous row , for that reason dashboard can be really long and which is common problem for all. So is there any solution? Yes we have. By adding a simple vertical scroll bar can neglect this problem very easily. So lets start.

Suppose we have this dashboard where we want to add a scroll bar into the second panel.

1

At first click edit and  go to Source code and put this html code in a dedicated panel.

  <row depends="$dont_show$">

    <panel>

      <html>

         <style>

           #name {

             overflow: auto;

             max-height: 200px;

           }

         </style>

       </html>

    </panel>

  </row>
2

After this save and refresh your page once, now you can see the changes.

3

But the problem is what if, you want to add scroll bar for only second panel?

Then need to assign a panel id, in that particular panel where scroll bar need to added.

4

After this save and refresh your page once, you can see the changes.

5

Now, I hope you have understood how to add scroll bar in the dashboard panel

Happy Splunking !!

What’s your Reaction?
+1
+1
+1
2
+1
1
+1
+1
+1

Spread our blog
You can also know about :  How To Hide Error Message Icon From Splunk Dashboard Panels

3 COMMENTS

  1. You guys are amazing. No other website or place where I seen this many splunk knowledge sharing. I sincerely appreciate for taking your time and effort to share your valuable knowledge for the community. Very neat and clear demonstration of all the topics. Please keep this continuing. Let me know if you need any contribution from me. Happy to do it.

LEAVE A REPLY

Please enter your comment!
Please enter your name here