Merge branch 'ent-13258-real-time-graphs-muestran-modulos-que-no-estan-en-mi-grupo' into 'develop'

Ent 13258 real time graphs muestran modulos que no estan en mi grupo

See merge request artica/pandorafms!7200
This commit is contained in:
Diego Muñoz-Reja 2024-04-16 08:03:44 +00:00
commit 0cac7fa733
1 changed files with 26 additions and 22 deletions

View File

@ -81,30 +81,34 @@ function pandora_realtime_graphs()
$table->style = [];
$table->data = [];
$graph_fields['cpu_load'] = __('%s Server CPU', get_product_name());
$graph_fields['pending_packets'] = __(
'Pending packages from %s Server',
get_product_name()
);
$graph_fields['disk_io_wait'] = __(
'%s Server Disk IO Wait',
get_product_name()
);
$graph_fields['apache_load'] = __(
'%s Server Apache load',
get_product_name()
);
$graph_fields['mysql_load'] = __(
'%s Server MySQL load',
get_product_name()
);
$graph_fields['server_load'] = __(
'%s Server load',
get_product_name()
);
$graph = get_parameter('graph', 'snmp_interface');
if ((bool) check_acl($config['id_user'], 0, 'PM') === true) {
$graph = get_parameter('graph', 'cpu_load');
$graph_fields['cpu_load'] = __('%s Server CPU', get_product_name());
$graph_fields['pending_packets'] = __(
'Pending packages from %s Server',
get_product_name()
);
$graph_fields['disk_io_wait'] = __(
'%s Server Disk IO Wait',
get_product_name()
);
$graph_fields['apache_load'] = __(
'%s Server Apache load',
get_product_name()
);
$graph_fields['mysql_load'] = __(
'%s Server MySQL load',
get_product_name()
);
$graph_fields['server_load'] = __(
'%s Server load',
get_product_name()
);
}
$graph_fields['snmp_interface'] = __('SNMP Interface throughput');
$graph = get_parameter('graph', 'cpu_load');
$refresh = get_parameter('refresh', '1000');
if ($graph != 'snmp_module') {