Explains how to view the cluster health, disk, memory, CPU utilization metrics, and alarms on the cluster using either the Control System or the CLI.
The Overview page displays the following panes:
The Cluster Utilization pane in the Overview page displays the following for:
The Cluster Utilization pane also shows the amount of raw data and the savings (in percentage) after compression.
The Utilization Trend pane shows CPU, memory, and disk usage trend for the last 24 hours by default. You can select a preset (shown in the following screenshot) or specify a custom time range (shown in the following screenshot).
You can zoom in (by clicking and dragging the cursor in the pane) for a more granular view. Click Reset Zoom to zoom out and return to selected date/time range view. If there were any alarms during the selected date/time range, the Alarms pane above shows:
— an
error
— a
warning
—
informationSee Viewing Active Cluster Alarms for more information.
The basic command to retrieve cluster health and disk space information is:
maprcli dashboard info -cluster <cluster>
utilization field in the output shows the total and utilized
amount of disk space, memory, and CPU for the cluster, which can also be
visualized on the Control System. For example:
# /opt/mapr/bin/maprcli dashboard info -json
{
"timestamp":1525230746268,
"timeofday":"2018-05-01 08:12:26.268 GMT-0700 PM",
"status":"OK",
"total":1,
"data":[
{
...
"utilization":{
"cpu":{
"util":7,
"total":8,
"active":0
},
"memory":{
"total":15886,
"active":11281
},
"disk_space":{
"total":273,
"active":0
},
"compression":{
"compressed":0,
"uncompressed":0
},
"tiering":{
"logicalUsed":0,
"replicatedLogicalUsed":0,
"replicatedTotalUsed":0,
"ecTotalUsed":0,
"cvTotalUsed":0,
"offloaded":0,
"recalled":0
}
},
...
}
]
}
For information on all the fields returned by this command, see dashboard info.