Add parallel processing for HTTP requests and handle fallback values
- Implement parallel processing using pcntl_fork for HTTP requests - Handle different types of HTTP data retrieval and response codes - Set fallback values if necessary based on configuration
This commit is contained in:
parent
09bba2a0c3
commit
aa6d231ead
18
index.php
18
index.php
@ -22,7 +22,10 @@ if(php_sapi_name() == 'cli' || $_SERVER["REQUEST_URI"] == '/metrics') {
|
||||
$metric['submetrics'] = [$metric];
|
||||
}
|
||||
foreach ($metric['submetrics'] as $subkey => &$submetric) {
|
||||
|
||||
$pid = pcntl_fork();
|
||||
if ($pid > 0) {
|
||||
$pids[] = $pid;
|
||||
} else {
|
||||
if (isset($submetric['command'])) {
|
||||
$output = null;
|
||||
$retval = null;
|
||||
@ -84,7 +87,19 @@ if(php_sapi_name() == 'cli' || $_SERVER["REQUEST_URI"] == '/metrics') {
|
||||
|
||||
if (is_bool($submetric['value'])) $submetric['value'] = $submetric['value'] ? 1 : 0;
|
||||
|
||||
file_put_contents('/tmp/.metrics.' . $key . '.' . $subkey, $submetric['value']);
|
||||
exit();
|
||||
}
|
||||
}
|
||||
}
|
||||
foreach ($pids as $pid) {
|
||||
pcntl_waitpid($pid, $none);
|
||||
}
|
||||
|
||||
|
||||
foreach ($config as $key => &$metric) {
|
||||
foreach ($metric['submetrics'] as $subkey => &$submetric) {
|
||||
$submetric['value'] = file_get_contents('/tmp/.metrics.' . $key . '.' . $subkey);
|
||||
if (!empty($oldconfig) && !isset($submetric['value']) && (isset($submetric['fallback']) && !empty($submetric['fallback']))) {
|
||||
if (!isset($submetric['fallback']['maxage']) || time() < ($oldconfig[$key]['submetrics'][$subkey]['time'] + $submetric['fallback']['maxage'])) {
|
||||
if ($submetric['fallback']['type'] == 'previous') {
|
||||
@ -100,6 +115,7 @@ if(php_sapi_name() == 'cli' || $_SERVER["REQUEST_URI"] == '/metrics') {
|
||||
} else {
|
||||
$submetric['time'] = time();
|
||||
}
|
||||
unlink('/tmp/.metrics.' . $key . '.' . $subkey);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user