Dashboards & Visualizations

Multi-Paneled TabSwitcher

andru
Explorer

I'm trying to create a view with a TabSwitcher module that has a grid of several panels on each tab. When I add modules to a tab, it just displays them vertically, and when I try to specify a layout panel for the child module(s), it simply displays that module on the main view outside of the tab.

Any ideas or examples of what to do would be greatly appreciated. My apologies if this is a bit convoluted; this is my first time requesting help from the community. Let me know if any more information is needed.

Thanks!
Andru

Tags (2)

andru
Explorer

So here's how I managed to do this:

  1. Create the TabSwitcher (Or LinkSwitcher, etc) module
  2. Each tab will be a NullModule Wrapper that will wrap all child modules in the entire tab
  3. Each row will contain another NullModule that will house all modules in each row
  4. Each module in the row will use the _grpX parameter in the layoutPanel (i.e. panel_row1_col1_grp1, panel_row1_col1_grp2, etc)
  5. Each row's layoutPanel numbering starts over

<module name="TabSwitcher" layoutPanel="panel_row1_col1">

 <param name="mode">independent</param>

 <module name="NullModule" group="Tab1_Name">

  <module name="NullModule">

   <module name="ModuleName" layoutPanel="panel_row1_col1_grp1">

    .

    .

    .

   </module>

   <module name="ModuleName" layoutPanel="panel_row1_col1_grp2">

    .

    .

    .

   </module>

  </module>

  <module name="NullModule">

   <module name="ModuleName" layoutPanel="panel_row1_col1_grp1">

    .

    .

    .

   </module>

   <module name="ModuleName" layoutPanel="panel_row1_col1_grp2">

    .

    .

    .

   </module>

   <module name="ModuleName" layoutPanel="panel_row1_col1_grp3">

    .

    .

    .

   </module>

  </module>

 </module>

 <module name="NullModule" group="Tab2_Name">

  <module name="NullModule">

   <module name="ModuleName" layoutPanel="panel_row1_col1_grp1">

    .

    .

    .

   </module>

   <module name="ModuleName" layoutPanel="panel_row1_col1_grp2">

    .

    .

    .

   </module>

  </module>

  <module name="NullModule">

   <module name="ModuleName" layoutPanel="panel_row1_col1_grp1">

    .

    .

    .

   </module>

   <module name="ModuleName" layoutPanel="panel_row1_col1_grp2">

    .

    .

    .

   </module>

   <module name="ModuleName" layoutPanel="panel_row1_col1_grp3">

    .

    .

    .

   </module>

  </module>

 </module>

</module>

lukeh
Contributor

nice work @andru !!!

0 Karma

andru
Explorer

The above code is how I've managed to get a single row in each tab with multiple horizontal modules grouped together.

However, if I try to add, say layoutPanel="panel_row2_col1_grp1" in a child module in a tab, it will display the module in row 2 of the main panel outside of the TabSwitcher.

Is there a way to specify that a module will take up multiple rows?

0 Karma

andru
Explorer


independent


.


.




.


.


0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...