RGM ruft die Monitor_check-Methode auf, wenn der Fehler-Monitor einen Failover-Versuch der Ressourcengruppe, die die Ressource enthält, an einem anderen Knoten durchführt. Die xfnts_monitor_check-Methode ruft die svc_validate()-Methode auf, um zu prüfen, ob eine ordnungsgemäße Konfiguration zur Unterstützung des xfs-Dämons vorhanden ist. Weitere Informationen finden Sie unter xfnts_validate-Methode. Der Code für xfnts_monitor_check lautet wie folgt:
/* Process the arguments passed by RGM and initialize syslog */
if (scds_initialize(&scds_handle, argc, argv) != SCHA_ERR_NOERR)
{
scds_syslog(LOG_ERR, "Failed to initialize the handle.");
return (1);
}
rc = svc_validate(scds_handle);
scds_syslog_debug(DBG_LEVEL_HIGH,
"monitor_check method "
"was called and returned <%d>.", rc);
/* Free up all the memory allocated by scds_initialize */
scds_close(&scds_handle);
/* Return the result of validate method run as part of monitor check */
return (rc);
}