You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Assumptions:

  • installed opCharts

Overview

opCharts has dashboards built into the heart of it's engine.  Dashboards have the ability to display components, components can load data from many different sources and display it as a graph/table/pie/chart/etc.  Right now only graphs are supported.

opCharts runs in 2 modes.  Standalone and not-standalone (NMIS attached).  

Operational mode (standalone or not)

Not-Standalone

When opCharts is not in standalone mode 'opcharts_running_standalone' => 'false', opCharts will be linked to NMIS and the index page will show a node search and a default dashboard (if the user has chosen one).  In this mode there are no custom opcharts users or customers.  Although the menu will allow the user to create them they will not be used.  All users are loaded from the NMIS configuration as well as their privilege mode.

Node search: the search box for nodes will search by the ip address, node name or group name.  Tokens are separated by spaces,-,_,etc, and the search is currently only starting from the beginning of a token.

Standalone

When opCharts is in standalone mode, no connection to NMIS is made or attempted.  The index page will show a list of dashboards the user is able to view.  If the user sets one of these dashboards as their default the index page will display that dashboard in the place of the list of dashboards.  If the administrator would like to set a default dashboard for the customer that can be done.  See default_for in the Dashboards seciton.

Dashboards

Dashboards can be created and set as the default for many different views of the system (depending on standalone mode the options to do this differ). 

  • defined application wide (not stored per user)
  • names are unique, cannot be changed after creation (because they are used to link into other places, like default dashboards
  • permissions per dashboard define what roles can view the specific dashboard
  • care should to be taken to ensure that a dashboard that is visible to a customer does not contain graphs that the customer should not see (no permissions exist for charts)
  • allows admin to adjust if specific dashboards should override auto generated dashboards
  • if a dashboard is deleted which is also set to a users default dashboard the user will just see the regular index page because the one picked cannot be found.  

default_for

Standalone mode:

Specifying a dashboard with permissions checked for only Customer and a default for of "index_opCharts" will make that dashboard appear in the users index view.  Same goes for operator permissions and administrator permissions.  The same dashboard can be used for more than one role if both roles are selected.

Non-Standalone mode:

When opCharts is linked to NMIS it displays the information available from the model of the node, all graphs that exist for a node or node resource index are shown.  To override these default dashboards to show only the information you prefer, create a dashboard with the charts you would like to show.  Then enter the correct default for string.  opCharts will search from most-specific default_for to least specific default_for, if nothing is found matching it will display an auto-generated dashboard.

The search is separated into 2 categories:

  1. Node only
  2. Node resource / indexed resource
Node Only

The search for node only dashboards goes like this:

"${model_name}",
"default"

 In the shipping configuration, a dashboard is defined for "CiscoRouter", so this will display for all nodes that use the CiscoRouter model. 

Node Resource / indexed resource

The search for this is more complex but it works the same way:

 

"${model_name}_${resource_name}_${dataset_name}",
"node_${resource_name}_${dataset_name}",
"${model_name}_${resource_id}_default",
"node_${resource_name}_default",
"${model_name}_resource_default",
"node_resource_default"

Example:

omk/opCharts/nodes/asgard/resources/nodehealth/datasets/MemoryFreeIO

omk/opCharts/nodes/asgard/resources/resource_name/datasets/dataset_name

So dashboards can be set per resource / dataset specifically for a model or for all nodes (in that case use word "node" instead of the model name).  The default config ships with an example of this (with no dataset) for all node interfaces which is named "node interface defaults".

Charts

 

 

  • No labels