diff --git a/pandora_console/extras/mr/67.sql b/pandora_console/extras/mr/67.sql
index 3cdcc5b722..a31ea6e670 100644
--- a/pandora_console/extras/mr/67.sql
+++ b/pandora_console/extras/mr/67.sql
@@ -1,5 +1,8 @@
START TRANSACTION;
+-- Delete table tagent_access
+DROP TABLE tagent_access;
+
ALTER TABLE treport_content ADD check_unknowns_graph tinyint DEFAULT 0 NULL;
COMMIT;
diff --git a/pandora_console/godmode/db/db_main.php b/pandora_console/godmode/db/db_main.php
index 9979b2c224..3bd4052ba2 100644
--- a/pandora_console/godmode/db/db_main.php
+++ b/pandora_console/godmode/db/db_main.php
@@ -27,7 +27,6 @@ if (! check_acl($config['id_user'], 0, 'DM')) {
// Get some general DB stats (not very heavy)
// NOTE: this is not realtime monitoring stats, are more focused on DB sanity
-$stat_access = db_get_sql('SELECT COUNT(*) FROM tagent_access WHERE id_agent != 0');
$stat_data = db_get_sql('SELECT COUNT(*) FROM tagente_datos WHERE id_agente_modulo != 0');
$stat_data_log4x = db_get_sql('SELECT COUNT(*) FROM tagente_datos_log4x WHERE id_agente_modulo != 0');
$stat_data_string = db_get_sql('SELECT COUNT(*) FROM tagente_datos_string WHERE id_agente_modulo != 0');
@@ -149,18 +148,6 @@ echo $stat_modules;
echo '';
-
-echo '
';
-echo __('Total agent access records');
-echo ' | ';
-if ($stat_access > $max_access) {
- echo "$stat_access";
-} else {
- echo $stat_access;
-}
-
-echo ' |
';
-
// Sanity
echo '';
echo __('Database sanity');
diff --git a/pandora_console/godmode/setup/performance.php b/pandora_console/godmode/setup/performance.php
index 51cd554a66..870c4c283a 100644
--- a/pandora_console/godmode/setup/performance.php
+++ b/pandora_console/godmode/setup/performance.php
@@ -154,8 +154,7 @@ if ($update_config == 1 && $config['history_db_enabled'] == 1) {
$performance_variables_control = (array) json_decode(io_safe_output($config['performance_variables_control']));
$total_agents = db_get_value('count(*)', 'tagente');
-$disable_agentaccess = ($total_agents >= 200 && $config['agentaccess'] == 0) ? true : false;
-
+// $disable_agentaccess = ($total_agents >= 200 && $config['agentaccess'] == 0) ? true : false;
$table_status = new StdClass();
$table_status->width = '100%';
$table_status->class = 'databox filters';
@@ -666,8 +665,8 @@ $table_other->data[2][1] = html_print_label_input_block(
true
)
);
-
-$table_other->data[3][0] = html_print_label_input_block(
+/*
+ $table_other->data[3][0] = html_print_label_input_block(
__('Use agent access graph'),
html_print_checkbox_switch(
'agentaccess',
@@ -676,9 +675,9 @@ $table_other->data[3][0] = html_print_label_input_block(
true,
$disable_agentaccess
)
-);
-
-$table_other->data[3][1] = html_print_label_input_block(
+ );
+*/
+$table_other->data[3][0] = html_print_label_input_block(
__('Max. recommended number of files in attachment directory'),
html_print_input_text(
'num_files_attachment',
diff --git a/pandora_console/include/class/ConsoleSupervisor.php b/pandora_console/include/class/ConsoleSupervisor.php
index b545d711b4..91a88064f3 100644
--- a/pandora_console/include/class/ConsoleSupervisor.php
+++ b/pandora_console/include/class/ConsoleSupervisor.php
@@ -269,13 +269,6 @@ class ConsoleSupervisor
$this->checkSyncQueueStatus();
}
- /*
- * Check number of agents is equals and more than 200.
- * NOTIF.ACCESSSTASTICS.PERFORMANCE
- */
-
- $this->checkAccessStatisticsPerformance();
-
/*
* Checkc agent missing libraries.
* NOTIF.AGENT.LIBRARY
@@ -573,13 +566,6 @@ class ConsoleSupervisor
$this->checkSyncQueueStatus();
}
- /*
- * Check number of agents is equals and more than 200.
- * NOTIF.ACCESSSTASTICS.PERFORMANCE
- */
-
- $this->checkAccessStatisticsPerformance();
-
/*
* Checkc agent missing libraries.
* NOTIF.AGENT.LIBRARY
diff --git a/pandora_console/include/class/Diagnostics.class.php b/pandora_console/include/class/Diagnostics.class.php
index 7d7532189c..aa5d5995af 100644
--- a/pandora_console/include/class/Diagnostics.class.php
+++ b/pandora_console/include/class/Diagnostics.class.php
@@ -580,9 +580,6 @@ class Diagnostics extends Wizard
$countModuleData = db_get_value_sql(
'SELECT COUNT(*) FROM tagente_datos'
);
- $countAgentAccess = db_get_value_sql(
- 'SELECT COUNT(*) FROM tagent_access'
- );
$countEvents = db_get_value_sql('SELECT COUNT(*) FROM tevento');
if (enterprise_installed() === true) {
@@ -595,39 +592,35 @@ class Diagnostics extends Wizard
$result = [
'error' => false,
'data' => [
- 'countAgents' => [
+ 'countAgents' => [
'name' => __('Total agents'),
'value' => $countAgents,
],
- 'countModules' => [
+ 'countModules' => [
'name' => __('Total modules'),
'value' => $countModules,
],
- 'countGroups' => [
+ 'countGroups' => [
'name' => __('Total groups'),
'value' => $countGroups,
],
- 'countModuleData' => [
+ 'countModuleData' => [
'name' => __('Total module data records'),
'value' => $countModuleData,
],
- 'countAgentAccess' => [
- 'name' => __('Total agent access record'),
- 'value' => $countAgentAccess,
- ],
- 'countEvents' => [
+ 'countEvents' => [
'name' => __('Total events'),
'value' => $countEvents,
],
- 'countTraps' => [
+ 'countTraps' => [
'name' => __('Total traps'),
'value' => $countTraps,
],
- 'countUsers' => [
+ 'countUsers' => [
'name' => __('Total users'),
'value' => $countUsers,
],
- 'countSessions' => [
+ 'countSessions' => [
'name' => __('Total sessions'),
'value' => $countSessions,
],
diff --git a/pandora_console/include/functions_config.php b/pandora_console/include/functions_config.php
index c9e4aa2226..bfdd131748 100644
--- a/pandora_console/include/functions_config.php
+++ b/pandora_console/include/functions_config.php
@@ -917,10 +917,6 @@ function config_update_config()
$error_update[] = __('Batch statistics period (secs)');
}
- if (config_update_value('agentaccess', (int) get_parameter('agentaccess'), true) === false) {
- $error_update[] = __('Use agent access graph');
- }
-
if (config_update_value('num_files_attachment', (int) get_parameter('num_files_attachment'), true) === false) {
$error_update[] = __('Max. recommended number of files in attachment directory');
}
@@ -2237,10 +2233,6 @@ function config_process_config()
config_update_value('show_qr_code_header', false);
}
- if (!isset($config['agentaccess'])) {
- config_update_value('agentaccess', true);
- }
-
if (!isset($config['timezone'])) {
config_update_value('timezone', 'Europe/Berlin');
}
diff --git a/pandora_console/include/functions_graph.php b/pandora_console/include/functions_graph.php
index d1c31f95b0..58ed138259 100644
--- a/pandora_console/include/functions_graph.php
+++ b/pandora_console/include/functions_graph.php
@@ -2525,92 +2525,6 @@ function combined_graph_summatory_average(
}
-/**
- * Print a graph with access data of agents.
- *
- * @param integer $id_agent Agent Id.
- * @param integer $period Timestamp period graph.
- * @param boolean|null $return Type return.
- *
- * @return string
- */
-function graphic_agentaccess(
- int $id_agent,
- int $period=0,
- ?bool $return=false,
- ?bool $agent_view=false
-) {
- global $config;
-
- // Dates.
- $date = get_system_time();
- $datelimit = ($date - $period);
- $interval = 3600;
-
- // Query.
- $sql = sprintf(
- 'SELECT utimestamp, count(*) as data
- FROM tagent_access
- WHERE id_agent = %d
- AND utimestamp >= %d
- AND utimestamp <= %d
- GROUP BY TRUNCATE(utimestamp/%d,0)',
- $id_agent,
- $datelimit,
- $date,
- $interval
- );
-
- $data = db_get_all_rows_sql($sql);
-
- // Array data.
- $data_array = [];
- $colors = [];
- if (isset($data) === true && is_array($data) === true) {
- foreach ($data as $value) {
- $time = io_safe_output(date('H:m', $value['utimestamp']));
- $labels[] = $time;
- $data_array[] = [
- 'y' => (int) $value['data'],
- 'x' => $time,
- ];
-
- $colors[] = '#82b92f';
- }
- }
-
- $options = [];
- $options['grid']['hoverable'] = true;
-
- if ($agent_view === true) {
- $options['agent_view'] = true;
- }
-
- $options = [
- 'height' => 125,
- 'colors' => $colors,
- 'legend' => ['display' => false],
- 'scales' => [
- 'x' => [
- 'grid' => ['display' => false],
- 'ticks' => [
- 'fonts' => ['size' => 8],
- ],
- ],
- 'y' => [
- 'grid' => ['display' => false],
- 'ticks' => [
- 'fonts' => ['size' => 8],
- ],
- ],
- ],
- 'labels' => $labels,
- ];
-
- return vbar_graph($data_array, $options);
-}
-
-
/**
* Print a pie graph with alerts defined/fired data
*
diff --git a/pandora_console/operation/agentes/estado_generalagente.php b/pandora_console/operation/agentes/estado_generalagente.php
index 62963f6b29..156fc32c3d 100755
--- a/pandora_console/operation/agentes/estado_generalagente.php
+++ b/pandora_console/operation/agentes/estado_generalagente.php
@@ -313,55 +313,6 @@ for ($i = 0; $i < $custom_fields_count; $i++) {
* END: TABLE DATA BUILD
*/
-/*
- * START: ACCESS RATE GRAPH
- */
-
-$access_agent = db_get_value_sql(
- 'SELECT COUNT(id_agent)
- FROM tagent_access
- WHERE id_agent = '.$id_agente
-);
-
-if ((bool) $config['agentaccess'] === true && $access_agent > 0) {
- $agentAccessRateHeader = html_print_div(
- [
- 'class' => 'agent_details_header',
- 'content' => '',
- ],
- true
- );
-
- $agentAccessRateContent = html_print_div(
- [
- 'class' => 'white-table-graph-content',
- 'content' => graphic_agentaccess(
- $id_agente,
- SECONDS_1DAY,
- true,
- true
- ),
- ],
- true
- );
-
- $agentAccessRate = html_print_div(
- [
- 'class' => 'box-flat agent_details_col mrgn_lft_20px w50p',
- 'id' => 'table_access_rate',
- 'content' => $agentAccessRateHeader.$agentAccessRateContent,
- ],
- true
- );
-} else {
- $agentAccessRate = '';
-}
-
-/*
- * END: ACCESS RATE GRAPH
- */
-
-
/*
* START: TABLE INTERFACES
*/
@@ -598,7 +549,7 @@ html_print_div(
html_print_div(
[
'class' => 'agent_details_line',
- 'content' => $agentEvents.$agentAccessRate,
+ 'content' => $agentEvents,
]
);
diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql
index 67ee60b21e..4c527345c0 100644
--- a/pandora_console/pandoradb.sql
+++ b/pandora_console/pandoradb.sql
@@ -293,12 +293,12 @@ CREATE TABLE IF NOT EXISTS `tagente_modulo` (
-- -----------------------------------------------------
-- Table `tagent_access`
-- -----------------------------------------------------
-CREATE TABLE IF NOT EXISTS `tagent_access` (
- `id_agent` INT UNSIGNED NOT NULL DEFAULT 0,
- `utimestamp` BIGINT NOT NULL DEFAULT 0,
- KEY `agent_index` (`id_agent`),
- KEY `idx_utimestamp` USING BTREE (`utimestamp`)
-) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4;
+-- CREATE TABLE IF NOT EXISTS `tagent_access` (
+-- `id_agent` INT UNSIGNED NOT NULL DEFAULT 0,
+-- `utimestamp` BIGINT NOT NULL DEFAULT 0,
+-- KEY `agent_index` (`id_agent`),
+-- KEY `idx_utimestamp` USING BTREE (`utimestamp`)
+-- ) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4;
-- -----------------------------------------------------
-- Table `talert_snmp`
diff --git a/pandora_server/lib/PandoraFMS/Config.pm b/pandora_server/lib/PandoraFMS/Config.pm
index ca7410e4e8..61ba9d7f9b 100644
--- a/pandora_server/lib/PandoraFMS/Config.pm
+++ b/pandora_server/lib/PandoraFMS/Config.pm
@@ -128,7 +128,6 @@ sub pandora_get_sharedconfig ($$) {
my ($pa_config, $dbh) = @_;
# Agentaccess option
- $pa_config->{"agentaccess"} = pandora_get_tconfig_token ($dbh, 'agentaccess', 1);
# Realtimestats 0 disabled, 1 enabled.
# Master servers will generate all the information (global tactical stats).
@@ -466,7 +465,6 @@ sub pandora_load_config {
# don't get an error later.
$pa_config->{"realtimestats"} = 0;
$pa_config->{"stats_interval"} = 300;
- $pa_config->{"agentaccess"} = 1;
$pa_config->{"event_storm_protection"} = 0;
$pa_config->{"use_custom_encoding"} = 0;
$pa_config->{"node_metaconsole"} = 0; # > 7.0NG
diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm
index edbd4069a9..baabc7d047 100644
--- a/pandora_server/lib/PandoraFMS/Core.pm
+++ b/pandora_server/lib/PandoraFMS/Core.pm
@@ -2159,24 +2159,6 @@ sub send_console_notification {
}
}
-##########################################################################
-=head2 C<< pandora_access_update (I<$pa_config>, I<$agent_id>, I<$dbh>) >>
-
-Update agent access table.
-
-=cut
-##########################################################################
-sub pandora_access_update ($$$) {
- my ($pa_config, $agent_id, $dbh) = @_;
-
- return if ($agent_id < 0);
-
- if ($pa_config->{"agentaccess"} == 0){
- return;
- }
- db_do ($dbh, "INSERT INTO tagent_access (id_agent, utimestamp) VALUES (?, ?)", $agent_id, time ());
-}
-
##########################################################################
=head2 C<< pandora_process_module (I<$pa_config>, I<$data>, I<$agent>, I<$module>, I<$module_type>, I<$timestamp>, I<$utimestamp>, I<$server_id>, I<$dbh>) >>
@@ -3426,14 +3408,10 @@ sub pandora_update_agent ($$$$$$$;$$$) {
# No access update for data without interval.
# Single modules from network server, for example. This could be very Heavy for Pandora FMS
- if ($agent_interval != -1){
- pandora_access_update ($pa_config, $agent_id, $dbh);
- } else {
-
- # Do not update the agent interval
+ if ($agent_interval == -1){
$agent_interval = undef;
}
-
+
# Update tagente
my $timestamp = strftime ("%Y-%m-%d %H:%M:%S", localtime());
my ($set, $values) = db_update_get_values ({'agent_version' => $agent_version,
@@ -4238,9 +4216,6 @@ sub pandora_delete_agent ($$;$) {
# Delete the agent
db_do ($dbh, 'DELETE FROM tagente WHERE id_agente = ?', $agent_id);
- # Delete agent access data
- db_do ($dbh, 'DELETE FROM tagent_access WHERE id_agent = ?', $agent_id);
-
# Delete addresses
db_do ($dbh, 'DELETE FROM taddress_agent WHERE id_ag = ?', $agent_id);
@@ -6709,8 +6684,7 @@ sub pandora_installation_monitoring($$) {
FROM
information_schema.tables
WHERE
- table_schema not in ('information_schema', 'mysql')
- AND table_name NOT IN ('tagent_access, tevento')"
+ table_schema not in ('information_schema', 'mysql')"
);
$module->{'unit'} = '%';
push(@modules, $module);
diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl
index 69e368b3af..23a93790f5 100755
--- a/pandora_server/util/pandora_db.pl
+++ b/pandora_server/util/pandora_db.pl
@@ -279,25 +279,7 @@ sub pandora_purgedb ($$$) {
log_message ('PURGE', "Deleting old access data (More than 24hr)");
- $first_mark = get_db_value_limit ($dbh, 'SELECT utimestamp FROM tagent_access ORDER BY utimestamp ASC', 1);
- if (defined ($first_mark)) {
- $total_time = $ulimit_access_timestamp - $first_mark;
- $purge_steps = int( $total_time / $BIG_OPERATION_STEP);
- if ($purge_steps > 0) {
- for (my $ax = 1; $ax <= $BIG_OPERATION_STEP; $ax++){
- db_do ($dbh, "DELETE FROM tagent_access WHERE utimestamp < ". ( $first_mark + ($purge_steps * $ax)) . " AND utimestamp >= ". $first_mark);
- log_message ('PURGE', "Agent access deletion progress %$ax", "\r");
- # Do a nanosleep here for 0,01 sec
- usleep (10000);
- }
- log_message ('', "\n");
- } else {
- log_message ('PURGE', "No agent access data to purge.");
- }
- } else {
- log_message ('PURGE', "No agent access data.");
- }
-
+
# Purge the reports
if (defined($conf->{'_enterprise_installed'}) && $conf->{'_enterprise_installed'} eq '1' &&
defined($conf->{'_metaconsole'}) && $conf->{'_metaconsole'} eq '1'){
diff --git a/pandora_server/util/pandora_perf_report.pl b/pandora_server/util/pandora_perf_report.pl
index cbc11219c7..cdad51d9ab 100644
--- a/pandora_server/util/pandora_perf_report.pl
+++ b/pandora_server/util/pandora_perf_report.pl
@@ -212,7 +212,6 @@ sub stress_agent {
sub table_stats {
my ($dbh, $conf) = @_;
my $stats = {
- tagent_access => 'N/A',
tagente => 'N/A',
tagente_datos => 'N/A',
tagente_datos_string => 'N/A',
@@ -225,8 +224,7 @@ sub table_stats {
FROM information_schema.TABLES
WHERE TABLE_SCHEMA=?
AND TABLE_NAME IN (?, ?, ?, ?, ?, ?, ?)",
- $conf->{'dbname'},
- 'tagent_access',
+ $conf->{'dbname'},,
'tagente',
'tagente_datos',
'tagente_datos_string',
@@ -309,7 +307,6 @@ sub generate_optimized_my_cnf {
sub table_comments {
my ($stats) = @_;
my $comments = {
- tagent_access => 'OK',
tagente => 'OK',
tagente_datos => 'OK',
tagente_datos_string => 'OK',
@@ -319,12 +316,6 @@ sub table_comments {
tsesion => 'OK',
};
- if ($stats->{'tagent_access'} > $stats->{'tagente'} * 24 * 250) {
- $comments->{'tagent_access'} = 'CRITICAL: Table too big. Please contact our support team at: support@artica.es';
- } elsif ($stats->{'tagent_access'} > $stats->{'tagente'} * 24 * 100) {
- $comments->{'tagent_access'} = 'WARNING: Table too big. Please contact our support team at: support@artica.es';
- }
-
if ($stats->{'tagente_datos'} > 5000000) {
$comments->{'tagente_datos'} = 'CRITICAL: Table too big. Please use a history database or decrease the purge period.';
} elsif ($stats->{'tagente_datos'} > 1000000) {
@@ -474,7 +465,6 @@ Module table $table_stats->{'tagente_modulo'} $tab
Data table $table_stats->{'tagente_datos'} $table_comments->{'tagente_datos'}
String data table $table_stats->{'tagente_datos_string'} $table_comments->{'tagente_datos_string'}
Event table $table_stats->{'tevento'} $table_comments->{'tevento'}
-Access stats $table_stats->{'tagent_access'} $table_comments->{'tagent_access'}
Audit information $table_stats->{'tsesion'} $table_comments->{'tsesion'}
|
---|