Versions Compared

Key

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

...

Enterprise Services are supported under the MSP authorization system when added as a dashboard component, RBAC for enterprise services is still being worked on.

How metrics are calculated

Nodes

Node status is calculated from the status events for the node, it aggerates the status event levels and averages out the current status.

If any node is unreachable the enterprise service is marked unreachable, if nodes are degraded but none are unreachable the enterprise service is marked degraded.

Interfaces

Interfaces down metrics are calculated by getting all interface inventory with the status "Interface Down", and store a count of these interfaces.

The overall interface status is calculated from all interfaces related status level and averaged out.

If any interface is marked "Interface Down" the enterprise service is marked unreachable.

Monitored Services

All service inventory tagged with the enterprise service name is aggerated to get the current status. If any monitored service is marked down then  enterprise service is marked unreachable.

Overall State

The overall state of the enterprise service is taken from the worst state of each one of the services.

Monitored ServicesNodesInterfaces
Services FatalNodes UnreachableInterfaces Down
Services DegradedNodes DegradedInterfaces Up
Services UpNode Up
Status Status Status 



Enterprise Service Rules

Enterprise service rules calculate how each group of entities control the status of the service.



Code Block
{
    "default": {
        "levels": {
            "node_status": [
                "reachable",
                100,
                "degraded",
                90,
                "unreachable",
                10
            ],
            "interface_status": [
                "reachable",
                100,
                "degraded",
                90,
                "unreachable",
                10
            ],
            "monitored_services_status": [
                "reachable",
                100,
                "degraded",
                90,
                "unreachable",
                10
            ],
            "nodes_unreachable": [
                "unreachable",
                1,
                "reachable",
                0
            ],
            "interfaces_unreachable": [
                "unreachable",
                1,
                "reachable",
                0
            ]
        }
    }
}



New/Edit

Add an Interface

To add a new interface, press the "+" icon in the Interfaces section as shown in the screen shot above.  Enter or select the node name, select the interface index/name and press "Add".

...