Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Customising the opCharts GUI

...

Hiding Module List in Menu Bar

 Each opModule includes a "Modules" menu item in the top menu bar. To hide the "Modules" menu item in the opCharts menu bar, change the configuration option in opCommon.nmis, "opcharts_gui_display_modules_list" to false, by default this is true.

...

Code Block
languageperl
titleopCommon.nmis opcharts section
'opcharts_node_selector_sections' => [
	  {
        'key' => 'nodestatus',
        'name' => 'Node Status'
      },
      {
        'key' => 'group',
        'name' => 'Group'
      },
# other default atttributes not shown for brevity
## adding in location as an attribute to filter by:
	  {
        'key' => 'location',
        'name' => 'Location'
      },

Info

If the attribute you have chosen is not populating the selector list as expected, check the /usr/local/nmis8/var/nmis-nodesum.json file for the attribute.  If the attribute is not listed add it to node_summary_field_list in /usr/local/nmis8/conf/Config.nmis.  A /usr/local/nmis8/bin/nmis.pl type=summary must run for these changes to take affect.

Adjusting Node Search

Type of search

...