diff --git a/www/include/monitoring/status/monitoringService.php b/www/include/monitoring/status/monitoringService.php index b870bfaf020..b0b61742fd3 100644 --- a/www/include/monitoring/status/monitoringService.php +++ b/www/include/monitoring/status/monitoringService.php @@ -111,8 +111,6 @@ $svc_path = $path . "Services/"; $hg_path = $path . "ServicesHostGroups/"; $sg_path = $path . "ServicesServiceGroups/"; -$meta_path = $path . "Meta/"; -$path_sch = $path . "Scheduling/"; if ($continue) { switch ($o) { @@ -120,26 +118,12 @@ * View of Service */ case "svc": - require_once $svc_path . "service.php"; - break; case "svcpb": - require_once $svc_path . "service.php"; - break; case "svc_warning": - require_once $svc_path . "service.php"; - break; case "svc_critical": - require_once $svc_path . "service.php"; - break; case "svc_unknown": - require_once $svc_path . "service.php"; - break; case "svc_ok": - require_once $svc_path . "service.php"; - break; case "svc_pending": - require_once $svc_path . "service.php"; - break; case "svc_unhandled": require_once $svc_path . "service.php"; break; @@ -157,8 +141,6 @@ break; case "svcgrid": - require_once $svc_path . "serviceGrid.php"; - break; case "svcOV": case "svcOV_pb": require_once $svc_path . "serviceGrid.php"; @@ -170,8 +152,6 @@ * View by Service Groups */ case "svcgridSG": - require_once $sg_path . "serviceGridBySG.php"; - break; case "svcOVSG": case "svcOVSG_pb": require_once $sg_path . "serviceGridBySG.php"; @@ -184,8 +164,6 @@ * View By hosts groups */ case "svcgridHG": - require_once $hg_path . "serviceGridByHG.php"; - break; case "svcOVHG": case "svcOVHG_pb": require_once $hg_path . "serviceGridByHG.php"; @@ -193,18 +171,6 @@ case "svcSumHG": require_once $hg_path . "serviceSummaryByHG.php"; break; - /* - * Meta Services - */ - case "meta": - require_once $meta_path . "/metaService.php"; - break; - /* - * Scheduling Queue - */ - case "svcSch": - require_once $path_sch . "serviceSchedule.php"; - break; default: require_once $svc_path . "service.php"; break;