.pdf)
WHM Plugins
.18 would mean you were using 18% of your server's computing power.
For more information on load averages, you can visit the Wikipedia article here.
loadavg function from within your custom script:
/xml-api/loadavg function call name, plus the required variables (see below), to a URL which includes the address of your server.
example.com, you would include the following string in your script: https://example.com:2087/xml-api/loadavg
loadavg function from within your custom script:
/json-api/loadavg function call name, plus the required variables (see below), to a URL which includes the address of your server.
example.com, you would include the following string in your script: https://example.com:2087/json-api/loadavg
https://example.com:2087/xml-api/loadavg in WebHost Manager will produce output similar to:
<loadavg>
<one>0.17</one>
<five>0.18</five>
<fifteen>0.19</fifteen>
</loadavg>
https://example.com:2087/json-api/loadavg in WebHost Manager will produce output similar to:
{
"one":"0.05",
"five":"0.19",
"fifteen":"0.20"
}