The power status of the server is detected on the string which is returned by the NOC-PS API. Depending on the device, the returned string can differ. If the power status of your server does not get detected correctly by the module, you can extend the default strings. 

Please note the following things:

To view the default power values, please open the file "/modules/servers/dedicated/system/OnlineOfflineString.php".

To extend the power strings, follow this steps:

By making the changes in the override file, they are not reverted during a module update.

Example

If NOC-PS returns "serverUp" for online and "serverDown" for offline, insert the following value into the OnlineOfflineStrings.override.php file:

<?php

$OnlineStringArray[] = 'serverup';
$OfflineStringArray[] = 'serverdown';

As already mentioned, you must insert the value in lowercase.