NodeMananger healthy check includes script health checker and local dir checker.
By default, script health checker runs every 5 minutes, and local dir checker runss every 2 minutes.
NodeHealthCheckerService.isHealthy
boolean isHealthy() {
boolean scriptHealthStatus = (nodeHealthScriptRunner == null) ? true
: nodeHealthScriptRunner.isHealthy();
return scriptHealthStatus && dirsHandler.areDisksHealthy();
}