2011-01-25 11:47:40 +01:00
|
|
|
<?php
|
|
|
|
|
2021-11-04 16:28:15 +01:00
|
|
|
// Pandora FMS - http://pandorafms.com
|
2011-01-25 11:47:40 +01:00
|
|
|
// ==================================================
|
2020-11-27 13:52:35 +01:00
|
|
|
// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas
|
2011-03-17 Raul Mateos <raulofpandora@gmail.com>
* extensions/dbmanager.php, extensions/pandora_logs.php, general/*.php,
index.php, ajax.php, operation/search_*.php, operation/menu.php,
operation/extensions.php, godmode/menu.php, godmode/extensions.php,
admin_access_logs.php: Cleaned code and updated page disclaimers.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4108 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2011-03-17 23:01:01 +01:00
|
|
|
// Please see http://pandorafms.org for full contribution list
|
2011-01-25 11:47:40 +01:00
|
|
|
// This program is free software; you can redistribute it and/or
|
2011-03-23 Raul Mateos <raulofpandora@gmail.com>
* extensions/ssh_console.php, extensions/vnc_view.php,
extensions/update_manager.php, extensions/users_connected.php,
extensions/extension_uploader.php, extensions/insert_data.php,
extensions/module_groups.php, extensions/plugin_registration.php,
extensions/agent_modules.php, extensions/resource_registration.php,
extensions/resource_exportation.php, extensions/dbmanager.php,
extensions/pandora_logs.php, general/*.php, ajax.php,
operation/search_*.php, operation/menu.php, operation/extensions.php,
godmode/menu.php, godmode/extensions.php, godmode/admin_access_logs.php:
CReverted unwanted license changes.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4126 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2011-03-23 17:13:28 +01:00
|
|
|
// modify it under the terms of the GNU General Public License
|
2011-03-17 Raul Mateos <raulofpandora@gmail.com>
* extensions/dbmanager.php, extensions/pandora_logs.php, general/*.php,
index.php, ajax.php, operation/search_*.php, operation/menu.php,
operation/extensions.php, godmode/menu.php, godmode/extensions.php,
admin_access_logs.php: Cleaned code and updated page disclaimers.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4108 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2011-03-17 23:01:01 +01:00
|
|
|
// as published by the Free Software Foundation; version 2
|
2011-01-25 11:47:40 +01:00
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2011-03-17 Raul Mateos <raulofpandora@gmail.com>
* extensions/dbmanager.php, extensions/pandora_logs.php, general/*.php,
index.php, ajax.php, operation/search_*.php, operation/menu.php,
operation/extensions.php, godmode/menu.php, godmode/extensions.php,
admin_access_logs.php: Cleaned code and updated page disclaimers.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4108 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2011-03-17 23:01:01 +01:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2011-01-25 11:47:40 +01:00
|
|
|
// GNU General Public License for more details.
|
|
|
|
global $config;
|
|
|
|
|
2011-11-24 19:19:09 +01:00
|
|
|
enterprise_include_once('include/functions_policies.php');
|
2019-01-30 16:18:44 +01:00
|
|
|
require_once $config['homedir'].'/include/functions_modules.php';
|
|
|
|
require_once $config['homedir'].'/include/functions_users.php';
|
2011-11-24 19:19:09 +01:00
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
$searchModules = check_acl($config['id_user'], 0, 'AR');
|
2011-01-25 11:47:40 +01:00
|
|
|
|
2013-04-10 09:57:54 +02:00
|
|
|
if (!$modules || !$searchModules) {
|
2019-01-30 16:18:44 +01:00
|
|
|
echo "<br><div class='nf'>".__('Zero results found')."</div>\n";
|
|
|
|
} else {
|
2022-02-07 13:40:42 +01:00
|
|
|
$table = new stdClass();
|
2019-01-30 16:18:44 +01:00
|
|
|
$table->cellpadding = 4;
|
|
|
|
$table->cellspacing = 4;
|
|
|
|
$table->width = '98%';
|
|
|
|
$table->class = 'databox';
|
|
|
|
|
|
|
|
$table->head = [];
|
2022-02-07 13:48:25 +01:00
|
|
|
$table->head[0] = __('Module').' <a href="index.php?search_category=modules&keywords='.$config['search_keywords'].'&head_search_keywords=abc&offset='.$offset.'&sort_field=module_name&sort=up">'.html_print_image('images/sort_up.png', true, ['style' => $selectModuleNameUp]).'</a><a href="index.php?search_category=modules&keywords='.$config['search_keywords'].'&head_search_keywords=abc&offset='.$offset.'&sort_field=module_name&sort=down">'.html_print_image('images/sort_down.png', true, ['style' => $selectModuleNameDown]).'</a>';
|
|
|
|
$table->head[1] = __('Agent').' <a href="index.php?search_category=modules&keywords='.$config['search_keywords'].'&head_search_keywords=abc&offset='.$offset.'&sort_field=agent_name&sort=up">'.html_print_image('images/sort_up.png', true, ['style' => $selectAgentNameUp]).'</a><a href="index.php?search_category=modules&keywords='.$config['search_keywords'].'&head_search_keywords=abc&offset='.$offset.'&sort_field=agent_name&sort=down">'.html_print_image('images/sort_down.png', true, ['style' => $selectAgentNameDown]).'</a>';
|
2019-01-30 16:18:44 +01:00
|
|
|
$table->head[2] = __('Type');
|
|
|
|
$table->head[3] = __('Interval');
|
|
|
|
$table->head[4] = __('Status');
|
|
|
|
$table->head[5] = __('Graph');
|
|
|
|
$table->head[6] = __('Data');
|
|
|
|
$table->head[7] = __('Timestamp');
|
|
|
|
$table->head[8] = '';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$table->align = [];
|
|
|
|
$table->align[0] = 'left';
|
|
|
|
$table->align[1] = 'left';
|
|
|
|
$table->align[2] = 'left';
|
|
|
|
$table->align[3] = 'left';
|
|
|
|
$table->align[4] = 'left';
|
|
|
|
$table->align[5] = 'left';
|
|
|
|
$table->align[6] = 'left';
|
|
|
|
$table->align[7] = 'left';
|
|
|
|
$table->align[8] = 'left';
|
|
|
|
|
2022-01-19 11:36:54 +01:00
|
|
|
$table->headstyle = [];
|
|
|
|
$table->headstyle[0] = 'text-align: left';
|
|
|
|
$table->headstyle[1] = 'text-align: left';
|
|
|
|
$table->headstyle[2] = 'text-align: left';
|
|
|
|
$table->headstyle[3] = 'text-align: left';
|
|
|
|
$table->headstyle[4] = 'text-align: left';
|
|
|
|
$table->headstyle[5] = 'text-align: left';
|
|
|
|
$table->headstyle[6] = 'text-align: left';
|
|
|
|
$table->headstyle[7] = 'text-align: left';
|
|
|
|
$table->headstyle[8] = 'text-align: left';
|
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
$table->data = [];
|
|
|
|
|
|
|
|
$id_type_web_content_string = db_get_value(
|
|
|
|
'id_tipo',
|
|
|
|
'ttipo_modulo',
|
|
|
|
'nombre',
|
|
|
|
'web_content_string'
|
|
|
|
);
|
|
|
|
|
|
|
|
foreach ($modules as $module) {
|
|
|
|
$module['datos'] = modules_get_last_value($module['id_agente_modulo']);
|
|
|
|
$module['module_name'] = $module['nombre'];
|
|
|
|
|
|
|
|
// To search the monitor status
|
|
|
|
$status_sql = sprintf('SELECT estado from tagente_estado where id_agente_modulo ='.$module['id_agente_modulo']);
|
|
|
|
$status_sql = db_process_sql($status_sql);
|
|
|
|
$status_sql = $status_sql[0];
|
|
|
|
// To search the monitor utimestamp
|
|
|
|
$utimestamp_sql = sprintf('SELECT utimestamp from tagente_estado where id_agente_modulo ='.$module['id_agente_modulo']);
|
|
|
|
$utimestamp_sql = db_process_sql($utimestamp_sql);
|
|
|
|
$utimestamp_sql = $utimestamp_sql[0];
|
|
|
|
|
|
|
|
|
|
|
|
$agent = db_get_row('tagente', 'id_agente', $module['id_agente']);
|
|
|
|
$agentCell = '<a title='.$module['agent_name'].' href="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente='.$module['id_agente'].'">'.$agent['alias'].'</a>';
|
|
|
|
|
|
|
|
$typeCell = ui_print_moduletype_icon($module['id_tipo_modulo'], true);
|
|
|
|
|
|
|
|
$intervalCell = modules_get_interval($module['id_agente_modulo']);
|
|
|
|
|
2020-02-04 16:39:54 +01:00
|
|
|
|
|
|
|
$module_last_value = modules_get_last_value($module['id_agente_modulo']);
|
|
|
|
if (!is_numeric($module_last_value)) {
|
|
|
|
$module_last_value = htmlspecialchars($module_last_value);
|
|
|
|
}
|
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
if ($utimestamp_sql['utimestamp'] == 0
|
|
|
|
&& ( ($module['id_tipo_modulo'] < 21 || $module['id_tipo_modulo'] > 23)
|
|
|
|
&& $module['id_tipo_modulo'] != 100)
|
|
|
|
) {
|
|
|
|
$statusCell = ui_print_status_image(
|
|
|
|
STATUS_MODULE_NO_DATA,
|
|
|
|
__('NOT INIT'),
|
|
|
|
true
|
|
|
|
);
|
|
|
|
} else if ($status_sql['estado'] == 0) {
|
|
|
|
$statusCell = ui_print_status_image(
|
|
|
|
STATUS_MODULE_OK,
|
2020-02-04 16:39:54 +01:00
|
|
|
__('NORMAL').': '.$module_last_value,
|
2019-01-30 16:18:44 +01:00
|
|
|
true
|
|
|
|
);
|
|
|
|
} else if ($status_sql['estado'] == 1) {
|
|
|
|
$statusCell = ui_print_status_image(
|
|
|
|
STATUS_MODULE_CRITICAL,
|
2020-02-04 16:39:54 +01:00
|
|
|
__('CRITICAL').': '.$module_last_value,
|
2019-01-30 16:18:44 +01:00
|
|
|
true
|
|
|
|
);
|
|
|
|
} else if ($status_sql['estado'] == 2) {
|
|
|
|
$statusCell = ui_print_status_image(
|
|
|
|
STATUS_MODULE_WARNING,
|
2020-02-04 16:39:54 +01:00
|
|
|
__('WARNING').': '.$module_last_value,
|
2019-01-30 16:18:44 +01:00
|
|
|
true
|
|
|
|
);
|
2019-03-29 15:00:52 +01:00
|
|
|
} else if ($status_sql['estado'] == 3) {
|
|
|
|
$statusCell = ui_print_status_image(
|
|
|
|
STATUS_MODULE_UNKNOWN,
|
2020-02-04 16:39:54 +01:00
|
|
|
__('UNKNOWN').': '.$module_last_value,
|
2019-03-29 15:00:52 +01:00
|
|
|
true
|
|
|
|
);
|
2019-01-30 16:18:44 +01:00
|
|
|
} else {
|
|
|
|
$last_status = modules_get_agentmodule_last_status($module['id_agente_modulo']);
|
|
|
|
switch ($last_status) {
|
|
|
|
case 0:
|
|
|
|
$statusCell = ui_print_status_image(
|
|
|
|
STATUS_MODULE_OK,
|
2020-02-04 16:39:54 +01:00
|
|
|
__('UNKNOWN').' - '.__('Last status').' '.__('NORMAL').': '.$module_last_value,
|
2019-01-30 16:18:44 +01:00
|
|
|
true
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
$statusCell = ui_print_status_image(
|
|
|
|
STATUS_MODULE_CRITICAL,
|
2020-02-04 16:39:54 +01:00
|
|
|
__('UNKNOWN').' - '.__('Last status').' '.__('CRITICAL').': '.$module_last_value,
|
2019-01-30 16:18:44 +01:00
|
|
|
true
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
$statusCell = ui_print_status_image(
|
|
|
|
STATUS_MODULE_WARNING,
|
2020-02-04 16:39:54 +01:00
|
|
|
__('UNKNOWN').' - '.__('Last status').' '.__('WARNING').': '.$module_last_value,
|
2019-01-30 16:18:44 +01:00
|
|
|
true
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$graphCell = '';
|
|
|
|
if ($module['history_data'] == 1) {
|
|
|
|
$graph_type = return_graphtype($module['id_tipo_modulo']);
|
|
|
|
|
|
|
|
$name_module_type = modules_get_moduletype_name($module['id_tipo_modulo']);
|
|
|
|
$handle = 'stat'.$name_module_type.'_'.$module['id_agente_modulo'];
|
|
|
|
$url = 'include/procesos.php?agente='.$module['id_agente_modulo'];
|
|
|
|
$win_handle = dechex(crc32($module['id_agente_modulo'].$module['module_name']));
|
|
|
|
|
2022-02-07 13:48:25 +01:00
|
|
|
$link = "winopeng('".'operation/agentes/stat_win.php?'."type=$graph_type&".'period='.SECONDS_1DAY.'&id='.$module['id_agente_modulo'].'&refresh='.SECONDS_10MINUTES."', "."'day_".$win_handle."')";
|
2019-01-30 16:18:44 +01:00
|
|
|
|
|
|
|
$graphCell = '<a href="javascript:'.$link.'">'.html_print_image('images/chart_curve.png', true, ['border' => 0, 'alt' => '']).'</a>';
|
2022-02-07 13:48:25 +01:00
|
|
|
$graphCell .= ' '."<a href='index.php?".'sec=estado&sec2=operation/agentes/ver_agente&id_agente='.$module['id_agente'].'&tab=data_view&period='.SECONDS_1DAY.'&id='.$module['id_agente_modulo']."'>".html_print_image(
|
2019-01-30 16:18:44 +01:00
|
|
|
'images/binary.png',
|
|
|
|
true,
|
|
|
|
[
|
|
|
|
'border' => '0',
|
|
|
|
'alt' => '',
|
|
|
|
]
|
|
|
|
).'</a>';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_numeric(modules_get_last_value($module['id_agente_modulo']))) {
|
|
|
|
$dataCell = format_numeric(modules_get_last_value($module['id_agente_modulo']));
|
|
|
|
} else {
|
|
|
|
$dataCell = ui_print_module_string_value(
|
|
|
|
$module['datos'],
|
|
|
|
$module['id_agente_modulo'],
|
|
|
|
$module['current_interval']
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($module['estado'] == 3) {
|
|
|
|
$option = ['html_attr' => 'class="redb"'];
|
|
|
|
} else {
|
|
|
|
$option = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
$timestampCell = ui_print_timestamp($utimestamp_sql['utimestamp'], true, $option);
|
|
|
|
|
|
|
|
|
|
|
|
$group_agent = agents_get_agent_group($module['id_agente']);
|
|
|
|
|
|
|
|
if (check_acl($config['id_user'], $group_agent, 'AW')) {
|
|
|
|
$edit_module = 'aaa';
|
|
|
|
|
|
|
|
$url_edit = 'index.php?sec=gagente&sec2=godmode/agentes/configurar_agente&id_agente='.$module['id_agente'].'&tab=module&id_agent_module='.$module['id_agente_modulo'].'&edit_module=1';
|
|
|
|
|
|
|
|
$edit_module = '<a href="'.$url_edit.'">'.html_print_image('images/config.png', true).'</a>';
|
|
|
|
} else {
|
|
|
|
$edit_module = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
array_push(
|
|
|
|
$table->data,
|
|
|
|
[
|
|
|
|
$module['module_name'],
|
|
|
|
$agentCell,
|
|
|
|
$typeCell,
|
|
|
|
$intervalCell,
|
|
|
|
$statusCell,
|
|
|
|
$graphCell,
|
|
|
|
$dataCell,
|
|
|
|
$timestampCell,
|
|
|
|
$edit_module,
|
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
echo '<br />';
|
|
|
|
ui_pagination($totalModules);
|
|
|
|
html_print_table($table);
|
|
|
|
unset($table);
|
|
|
|
ui_pagination($totalModules);
|
2012-07-26 Miguel de Dios <miguel.dedios@artica.es>
* operation/users/user_edit.php,
operation/events/events_validate.php, operation/search_graphs.php,
godmode/events/event_filter.php, godmode/events/custom_events.php,
godmode/massive/massive_standby_alerts.php,
godmode/massive/massive_copy_modules.php, godmode/tag/tag.php,
godmode/netflow/nf_report.php, godmode/agentes/configure_field.php,
godmode/agentes/agent_manager.php,
godmode/agentes/agent_template.php,
godmode/agentes/fields_manager.php,
godmode/servers/recon_script.php, godmode/servers/plugin.php,
include/functions_modules.php: improved the source structure.
* operation/search_modules.php: fixed the search when the modules
haven't inicialiced.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6814 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-26 13:05:05 +02:00
|
|
|
}
|