Finally, a table!

Our dashboard is looking really good, but we just want to add one more change to our Simple XML code for the Basic Dashboard. We want to add a table at the bottom of the page showing the top five countries using the website, so that our users accessing our Splunk App will know that the site is being accessed by countries other than USA. So we open up our basic_dashboard.xml file, and we can now add a new element to our charts with the table element:

  1. After our row for our map element has been closed off, we want to add a new row straight after that, so we start by adding our row, panel, and new table element. Let's also add a title name for the table:
          19   <row> 
          20     <panel> 
          21       <table> 
          22         <title>Top 5 Countries</title> 
    
  2. We set up the ...

Get Learning Splunk Web Framework now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.