Merge branch 'ent-6844-quitar-vista-estadisticas-eventos' into 'develop'
Removes event_statistics view See merge request artica/pandorafms!3738
This commit is contained in:
commit
4d84ae8b58
|
@ -1,5 +1,6 @@
|
|||
operation/servers/recon_view.php
|
||||
operation/users/webchat.php
|
||||
operation/events/event_statistics.php
|
||||
include/javascript/webchat.js
|
||||
attachment/pandora_chat.log.json.txt
|
||||
attachment/pandora_chat.user_list.json.txt
|
||||
|
|
|
@ -1,108 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* Event statistics.
|
||||
*
|
||||
* @category Statistics view.
|
||||
* @package Pandora FMS
|
||||
* @subpackage Events.
|
||||
* @version 1.0.0
|
||||
* @license See below
|
||||
*
|
||||
* ______ ___ _______ _______ ________
|
||||
* | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __|
|
||||
* | __/| _ | | _ || _ | _| _ | | ___| |__ |
|
||||
* |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______|
|
||||
*
|
||||
* ============================================================================
|
||||
* Copyright (c) 2005-2021 Artica Soluciones Tecnologicas
|
||||
* Please see http://pandorafms.org for full contribution list
|
||||
* This program 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 for version 2.
|
||||
* This program 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.
|
||||
* ============================================================================
|
||||
*/
|
||||
|
||||
// Begin.
|
||||
global $config;
|
||||
|
||||
require_once $config['homedir'].'/include/functions_graph.php';
|
||||
|
||||
check_login();
|
||||
|
||||
if (! check_acl($config['id_user'], 0, 'ER')
|
||||
&& ! check_acl($config['id_user'], 0, 'EW')
|
||||
&& ! check_acl($config['id_user'], 0, 'EM')
|
||||
) {
|
||||
db_pandora_audit('ACL Violation', 'Trying to access event viewer');
|
||||
include 'general/noaccess.php';
|
||||
return;
|
||||
}
|
||||
|
||||
// Header.
|
||||
ui_print_page_header(__('Statistics'), 'images/op_events.png', false, false);
|
||||
echo '<table width=95%>';
|
||||
|
||||
echo '<tr>';
|
||||
echo "<td valign='top'>";
|
||||
echo '<h3>'.__('Event graph').'</h3>';
|
||||
echo '</td>';
|
||||
|
||||
echo "<td valign='top'>";
|
||||
echo '<h3>'.__('Event graph by user').'</h3>';
|
||||
echo '</td>';
|
||||
echo '</tr>';
|
||||
|
||||
echo '<tr>';
|
||||
echo "<td valign='top'>";
|
||||
echo grafico_eventos_total();
|
||||
echo '</td>';
|
||||
|
||||
echo "<td valign='top'>";
|
||||
echo grafico_eventos_usuario(320, 280);
|
||||
echo '</td>';
|
||||
echo '</tr>';
|
||||
|
||||
echo '<tr>';
|
||||
echo "<td valign='top'>";
|
||||
echo '<h3>'.__('Event graph by agent').'</h3>';
|
||||
echo '</td>';
|
||||
|
||||
echo "<td valign='top'>";
|
||||
echo '<h3>'.__('Amount events validated').'</h3>';
|
||||
echo '</td>';
|
||||
echo '</tr>';
|
||||
|
||||
$where = '';
|
||||
if (!users_is_admin()) {
|
||||
$where = 'AND event_type NOT IN (\'recon_host_detected\', \'system\',\'error\', \'new_agent\', \'configuration_change\')';
|
||||
}
|
||||
|
||||
echo '<tr>';
|
||||
echo "<td valign='top'>";
|
||||
echo grafico_eventos_grupo(300, 250, $where);
|
||||
echo '</td>';
|
||||
|
||||
echo "<td valign='top'>";
|
||||
$extra_filter = [];
|
||||
if (!users_is_admin()) {
|
||||
$extra_filter['event_type'] = [
|
||||
'unknown',
|
||||
'alert_fired',
|
||||
'alert_recovered',
|
||||
'alert_ceased',
|
||||
'alert_manual_validation',
|
||||
'critical',
|
||||
'warning',
|
||||
'normal',
|
||||
];
|
||||
}
|
||||
|
||||
echo graph_events_validated(320, 250, $extra_filter);
|
||||
echo '</td>';
|
||||
echo '</tr>';
|
||||
|
||||
echo '</table>';
|
|
@ -393,8 +393,6 @@ if (check_acl($config['id_user'], 0, 'ER')
|
|||
$sub['operation/events/events']['text'] = __('View events');
|
||||
$sub['operation/events/events']['id'] = 'View events';
|
||||
$sub['operation/events/events']['pages'] = ['godmode/events/events'];
|
||||
$sub['operation/events/event_statistics']['text'] = __('Statistics');
|
||||
$sub['operation/events/event_statistics']['id'] = 'Statistics';
|
||||
|
||||
// If ip doesn't is in list of allowed IP, isn't show this options.
|
||||
include_once 'include/functions_api.php';
|
||||
|
|
Loading…
Reference in New Issue