mirror of
https://codeberg.org/mclemens/tsmmonitor2.git
synced 2024-11-10 13:26:02 -05:00
53 lines
1.5 KiB
PHP
53 lines
1.5 KiB
PHP
<?php
|
|
|
|
/*
|
|
************************************************************************
|
|
This file is part of TSM Monitor.
|
|
|
|
TSM Monitor is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
TSM Monitor is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with TSM Monitor. If not, see <http://www.gnu.org/licenses/>.
|
|
************************************************************************
|
|
*/
|
|
|
|
|
|
/**
|
|
*
|
|
* tmonpolld_mp.php, TSM Monitor
|
|
*
|
|
* This file instantiates PollD_MP and executes the multi-process polling.
|
|
* Start it like this: 'nohup php tmonpolld_mp.php &'
|
|
*
|
|
*
|
|
* @author Michael Clemens, Frank Fegert
|
|
* @version 1.0
|
|
* @package tsmmonitor
|
|
*/
|
|
|
|
include_once("../includes/global.php");
|
|
|
|
// If possible disable execution timeout.
|
|
if (ini_get('safe_mode')) {
|
|
echo "\nWARN: PHP 'safe_mode' is on. Cannot disable 'max_execution_time' parameter.\n";
|
|
echo " Please adjust 'max_execution_time' manually in ".get_cfg_var('cfg_file_path')."\n";
|
|
echo " or turn off 'safe_mode' for the PHP CLI.\n\n";
|
|
} else {
|
|
set_time_limit(0);
|
|
}
|
|
|
|
$tmonpolld = new PollD_MP($config);
|
|
$tmonpolld->controlPollD("on");
|
|
$tmonpolld->poll();
|
|
|
|
|
|
?>
|