mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
1b5f5cee37
* checkpoint work for now * polling should be good now * re-work php-fpm some more * re-work the php-fpm app page * add php-fpm_v1_combined.inc.php * add more graphs * more work * add last request cpu * fix stats for pools * more graph work * update the docs for php-fpm * more graph work * more graph stuff * graph stuff now done * some style fixes * another style fix * remove a unneeded use line * add new tests * add some missing items to the test * json fix * remove start time and add data
83 lines
2.4 KiB
PHP
83 lines
2.4 KiB
PHP
<?php
|
|
|
|
$app_data = $app->data;
|
|
|
|
$link_array = [
|
|
'page' => 'device',
|
|
'device' => $device['device_id'],
|
|
'tab' => 'apps',
|
|
'app' => 'php-fpm',
|
|
];
|
|
|
|
if ($app_data['version'] == 'legacy') {
|
|
$graphs = [
|
|
'php-fpm_stats' => 'PHP-FPM',
|
|
];
|
|
} else {
|
|
print_optionbar_start();
|
|
|
|
// print the link to the totals
|
|
$total_label = isset($vars['phpfpm_pool'])
|
|
? 'Totals'
|
|
: '<span class="pagemenu-selected">Totals</span>';
|
|
echo generate_link($total_label, $link_array);
|
|
|
|
// print links to the pools
|
|
echo ' | Pools: ';
|
|
$pools = $app->data['pools'] ?? [];
|
|
sort($pools);
|
|
foreach ($pools as $index => $pool_name) {
|
|
$label = $vars['phpfpm_pool'] == $pool_name
|
|
? '<span class="pagemenu-selected">' . $pool_name . '</span>'
|
|
: $pool_name;
|
|
|
|
echo generate_link($label, $link_array, ['phpfpm_pool' => $pool_name]);
|
|
|
|
if ($index < (count($pools) - 1)) {
|
|
echo ', ';
|
|
}
|
|
}
|
|
|
|
print_optionbar_end();
|
|
|
|
$graphs = [
|
|
'php-fpm_v1_combined' => 'Combined',
|
|
'php-fpm_v1_accepted_conn' => 'Connections Per Second',
|
|
'php-fpm_v1_last_request_cpu' => 'Last Request CPU',
|
|
'php-fpm_v1_slow_requests' => 'Slow Requests',
|
|
'php-fpm_v1_active_processes' => 'Active Procs',
|
|
'php-fpm_v1_idle_processes' => 'Idle Procs',
|
|
'php-fpm_v1_total_processes' => 'Total Procs',
|
|
'php-fpm_v1_max_active_processes' => 'Max Active Procs',
|
|
'php-fpm_v1_listen_queue' => 'Listen Queue',
|
|
'php-fpm_v1_max_listen_queue' => 'Max Listen Queue',
|
|
'php-fpm_v1_listen_queue_len' => 'Listen Queue Len',
|
|
'php-fpm_v1_max_children_reached' => 'Max Children Reached',
|
|
'php-fpm_v1_start_since' => 'Uptime',
|
|
];
|
|
}
|
|
|
|
foreach ($graphs as $key => $text) {
|
|
$graph_type = $key;
|
|
$graph_array['height'] = '100';
|
|
$graph_array['width'] = '215';
|
|
$graph_array['to'] = \LibreNMS\Config::get('time.now');
|
|
$graph_array['id'] = $app['app_id'];
|
|
$graph_array['type'] = 'application_' . $key;
|
|
|
|
if (isset($vars['phpfpm_pool'])) {
|
|
$graph_array['phpfpm_pool'] = $vars['phpfpm_pool'];
|
|
}
|
|
|
|
echo '<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">' . $text . '</h3>
|
|
</div>
|
|
<div class="panel-body">
|
|
<div class="row">';
|
|
include 'includes/html/print-graphrow.inc.php';
|
|
echo '</div>';
|
|
echo '</div>';
|
|
echo '</div>';
|
|
}
|