Versions Compared

Key

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

...

Note when editing the component after the dashboard has been save you will see the nodes UUID in the node field instead of its name, this translation will be fixed in an upcoming release but does not impact how the component queries the data.


Example of the component schmea if you are using our JSON import tools to create these components

Code Block
languagejs
{
  "name": "Node Panel",
  "model_view" : "opmantek-node-panel",
  "parameters_overrides": {
    "node_uuid": "NODE_UUID"
  }
}


Event History Component Update

This component now supports filtering from its JSON document, you can hardcode the filters by node_uuid, group, location.

Code Block
languagejs
{
  "name": "Event History",
  "model_view" : "opmantek-db-log",
  "parameters_overrides": {
    "node_name_filter": "NODE_UUID",
	"nodes.configuration.group": "Datacenter_A",
	"nodes.configuration.location": "Wellington"
  }
}

Schema Drive Dashboard Components

...