Merge branch 'ent-10530-giss-demasiados-modulos-en-cola-en-vista-de-servidores' into 'develop'
Ent 10530 giss demasiados modulos en cola en vista de servidores See merge request artica/pandorafms!5688
This commit is contained in:
commit
1d81b67082
|
@ -73,6 +73,8 @@ $table->headstyle[8] = 'text-align:right;width: 120px;';
|
||||||
$table->titleclass = 'tabletitle';
|
$table->titleclass = 'tabletitle';
|
||||||
$table->titlestyle = 'text-transform:uppercase;';
|
$table->titlestyle = 'text-transform:uppercase;';
|
||||||
|
|
||||||
|
$table->style[6] = 'display: flex;align-items: center;';
|
||||||
|
|
||||||
$table->head = [];
|
$table->head = [];
|
||||||
$table->head[0] = __('Name');
|
$table->head[0] = __('Name');
|
||||||
$table->head[1] = __('Status');
|
$table->head[1] = __('Status');
|
||||||
|
@ -166,8 +168,16 @@ foreach ($servers as $server) {
|
||||||
}
|
}
|
||||||
|
|
||||||
$data[6] = $server['threads'].' : '.$server['queued_modules'];
|
$data[6] = $server['threads'].' : '.$server['queued_modules'];
|
||||||
if ($server['queued_modules'] > 200) {
|
if ($server['queued_modules'] > 500) {
|
||||||
$data[6] .= clippy_context_help('server_queued_modules');
|
$data[6] .= ' <div class="inline"><a onclick="show_dialog();" >'.html_print_image(
|
||||||
|
'images/info-warning.svg',
|
||||||
|
true,
|
||||||
|
[
|
||||||
|
'width' => 16,
|
||||||
|
'heght' => 16,
|
||||||
|
'class' => 'pulsate clickable',
|
||||||
|
]
|
||||||
|
).'</a></div>';
|
||||||
}
|
}
|
||||||
|
|
||||||
$data[7] = ui_print_timestamp($server['keepalive'], true);
|
$data[7] = ui_print_timestamp($server['keepalive'], true);
|
||||||
|
@ -306,3 +316,26 @@ if ($tiny) {
|
||||||
} else {
|
} else {
|
||||||
html_print_table($table);
|
html_print_table($table);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function show_dialog() {
|
||||||
|
confirmDialog({
|
||||||
|
title: "<?php echo __('Excesive Queued.'); ?>",
|
||||||
|
message: "<?php echo __('You have too many items in the processing queue. This can happen if your server is overloaded and/or improperly configured. This could be something temporary, or a bottleneck. If it is associated with a delay in monitoring, with modules going to unknown, try increasing the number of threads.'); ?>",
|
||||||
|
strOKButton: "<?php echo __('Close'); ?>",
|
||||||
|
hideCancelButton: true,
|
||||||
|
size: 675,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function runIt() {
|
||||||
|
$('.pulsate').animate({
|
||||||
|
opacity: '1'
|
||||||
|
}, 1000);
|
||||||
|
$('.pulsate').animate({
|
||||||
|
opacity: '0.6'
|
||||||
|
}, 1000, runIt);
|
||||||
|
}
|
||||||
|
runIt();
|
||||||
|
</script>
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg viewBox="0 0 14 14" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||||
|
<!-- Generator: Sketch 61.2 (89653) - https://sketch.com -->
|
||||||
|
<title>Dark / 14 / info@svg</title>
|
||||||
|
<desc>Created with Sketch.</desc>
|
||||||
|
<g id="Dark-/-14-/-info" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||||
|
<g id="Icons/Elements/Help-mini" fill="#f3b200">
|
||||||
|
<path d="M7,0 C10.8659932,0 14,3.13400675 14,7 C14,10.8659932 10.8659932,14 7,14 C3.13400675,14 0,10.8659932 0,7 C0,3.13400675 3.13400675,0 7,0 Z M7,6 C6.44771525,6 6,6.44771525 6,7 L6,7 L6,10 C6,10.5522847 6.44771525,11 7,11 C7.55228475,11 8,10.5522847 8,10 L8,10 L8,7 C8,6.44771525 7.55228475,6 7,6 Z M7,3 C6.44771525,3 6,3.44771525 6,4 C6,4.55228475 6.44771525,5 7,5 C7.55228475,5 8,4.55228475 8,4 C8,3.44771525 7.55228475,3 7,3 Z" id="Elements-/-Help-mini"></path>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 959 B |
Loading…
Reference in New Issue