mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-28 00:04:37 +02:00
Merge branch 'ent-5244-modulos-no-inicializan' into 'develop'
Fix perl date issue See merge request artica/pandorafms!2997
This commit is contained in:
commit
69be5aec24
@ -2882,7 +2882,7 @@ sub cron_valid_date {
|
|||||||
my $utime;
|
my $utime;
|
||||||
eval {
|
eval {
|
||||||
local $SIG{__DIE__} = sub {};
|
local $SIG{__DIE__} = sub {};
|
||||||
$utime = timelocal(0, $min, $hour, $mday, $month, $year);
|
$utime = strftime("%s", 0, $min, $hour, $mday, $month, $year);
|
||||||
};
|
};
|
||||||
if ($@) {
|
if ($@) {
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -1660,7 +1660,9 @@ sub pandora_process_module ($$$$$$$$$;$) {
|
|||||||
pandora_update_module_on_error ($pa_config, $module, $dbh);
|
pandora_update_module_on_error ($pa_config, $module, $dbh);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
my $last_try = ($1 == 0) ? 0 : timelocal($6, $5, $4, $3, $2 - 1, $1 - 1900);
|
|
||||||
|
my $last_try = ($1 == 0) ? 0 : strftime("%s", $6, $5, $4, $3, $2 - 1, $1 - 1900);
|
||||||
|
|
||||||
my $save = ($module->{'history_data'} == 1 && ($agent_status->{'datos'} ne $processed_data || $last_try < ($utimestamp - 86400))) ? 1 : 0;
|
my $save = ($module->{'history_data'} == 1 && ($agent_status->{'datos'} ne $processed_data || $last_try < ($utimestamp - 86400))) ? 1 : 0;
|
||||||
|
|
||||||
# Received stale data. Save module data if needed and return.
|
# Received stale data. Save module data if needed and return.
|
||||||
@ -3823,7 +3825,7 @@ sub pandora_evaluate_snmp_alerts ($$$$$$$$$) {
|
|||||||
# Check time threshold
|
# Check time threshold
|
||||||
$alert->{'last_fired'} = '1970-01-01 00:00:00' unless defined ($alert->{'last_fired'});
|
$alert->{'last_fired'} = '1970-01-01 00:00:00' unless defined ($alert->{'last_fired'});
|
||||||
return unless ($alert->{'last_fired'} =~ /(\d+)\-(\d+)\-(\d+) +(\d+):(\d+):(\d+)/);
|
return unless ($alert->{'last_fired'} =~ /(\d+)\-(\d+)\-(\d+) +(\d+):(\d+):(\d+)/);
|
||||||
my $last_fired = ($1 > 0) ? timelocal($6, $5, $4, $3, $2 - 1, $1 - 1900) : 0;
|
my $last_fired = ($1 > 0) ? strftime("%s", $6, $5, $4, $3, $2 - 1, $1 - 1900) : 0;
|
||||||
|
|
||||||
my $utimestamp = time ();
|
my $utimestamp = time ();
|
||||||
my $timestamp = strftime ("%Y-%m-%d %H:%M:%S", localtime($utimestamp));
|
my $timestamp = strftime ("%Y-%m-%d %H:%M:%S", localtime($utimestamp));
|
||||||
|
@ -309,7 +309,7 @@ sub process_xml_data ($$$$$) {
|
|||||||
my $utimestamp = 0;
|
my $utimestamp = 0;
|
||||||
eval {
|
eval {
|
||||||
if ($timestamp =~ /(\d+)[\/|\-](\d+)[\/|\-](\d+) +(\d+):(\d+):(\d+)/) {
|
if ($timestamp =~ /(\d+)[\/|\-](\d+)[\/|\-](\d+) +(\d+):(\d+):(\d+)/) {
|
||||||
$utimestamp = timelocal($6, $5, $4, $3, $2 -1 , $1 - 1900);
|
$utimestamp = strftime("%s", $6, $5, $4, $3, $2 -1 , $1 - 1900);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -837,7 +837,7 @@ sub process_module_data ($$$$$$$$$$) {
|
|||||||
}
|
}
|
||||||
my $utimestamp;
|
my $utimestamp;
|
||||||
eval {
|
eval {
|
||||||
$utimestamp = timelocal($6, $5, $4, $3, $2 - 1, $1 - 1900);
|
$utimestamp = strftime("%s", $6, $5, $4, $3, $2 - 1, $1 - 1900);
|
||||||
};
|
};
|
||||||
if ($@) {
|
if ($@) {
|
||||||
logger($pa_config, "Invalid timestamp '$timestamp' from module '$module_name' agent '$agent_name'.", 3);
|
logger($pa_config, "Invalid timestamp '$timestamp' from module '$module_name' agent '$agent_name'.", 3);
|
||||||
|
@ -2382,7 +2382,7 @@ sub get_unix_time {
|
|||||||
eval {
|
eval {
|
||||||
use Time::Local;
|
use Time::Local;
|
||||||
my ($mday,$mon,$year,$hour,$min,$sec) = split(/[\s$separator_dates$separator_hours]+/, $str_time);
|
my ($mday,$mon,$year,$hour,$min,$sec) = split(/[\s$separator_dates$separator_hours]+/, $str_time);
|
||||||
$time = timelocal($sec,$min,$hour,$mday,$mon-1,$year);
|
$time = strftime("%s", $sec,$min,$hour,$mday,$mon-1,$year);
|
||||||
};
|
};
|
||||||
if ($@) {
|
if ($@) {
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -1734,7 +1734,7 @@ sub cron_valid_date {
|
|||||||
my $utime;
|
my $utime;
|
||||||
eval {
|
eval {
|
||||||
local $SIG{__DIE__} = sub {};
|
local $SIG{__DIE__} = sub {};
|
||||||
$utime = timelocal(0, $min, $hour, $mday, $month, $year);
|
$utime = strftime("%s", 0, $min, $hour, $mday, $month, $year);
|
||||||
};
|
};
|
||||||
if ($@) {
|
if ($@) {
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -216,7 +216,7 @@ sub process_module_data ($$$$$$$$$) {
|
|||||||
$timestamp !~ /(\d+)\-(\d+)\-(\d+) +(\d+):(\d+):(\d+)/) {
|
$timestamp !~ /(\d+)\-(\d+)\-(\d+) +(\d+):(\d+):(\d+)/) {
|
||||||
}
|
}
|
||||||
my $utimestamp;
|
my $utimestamp;
|
||||||
$utimestamp = timelocal($6, $5, $4, $3, $2 - 1, $1 - 1900);
|
$utimestamp = strftime("%s", $6, $5, $4, $3, $2 - 1, $1 - 1900);
|
||||||
|
|
||||||
my %data_object;
|
my %data_object;
|
||||||
|
|
||||||
|
@ -112,13 +112,13 @@ sub generate_xml_files ($$$$$$) {
|
|||||||
my $time_from = get_conf_token ($conf, 'time_from', $time_now);
|
my $time_from = get_conf_token ($conf, 'time_from', $time_now);
|
||||||
die ("[error] Invalid time_from: $time_from\n\n")
|
die ("[error] Invalid time_from: $time_from\n\n")
|
||||||
unless ($time_from =~ /(\d+)\-(\d+)\-(\d+) +(\d+):(\d+):(\d+)/);
|
unless ($time_from =~ /(\d+)\-(\d+)\-(\d+) +(\d+):(\d+):(\d+)/);
|
||||||
my $utimestamp_from = timelocal($6, $5, $4, $3, $2 - 1, $1 - 1900);
|
my $utimestamp_from = strftime("%s", $6, $5, $4, $3, $2 - 1, $1 - 1900);
|
||||||
|
|
||||||
# Get time_to
|
# Get time_to
|
||||||
my $time_to = get_conf_token ($conf, 'time_to', $time_now);
|
my $time_to = get_conf_token ($conf, 'time_to', $time_now);
|
||||||
die ("[error] Invalid time_to: $time_to\n\n")
|
die ("[error] Invalid time_to: $time_to\n\n")
|
||||||
unless ($time_to =~ /(\d+)\-(\d+)\-(\d+) +(\d+):(\d+):(\d+)/);
|
unless ($time_to =~ /(\d+)\-(\d+)\-(\d+) +(\d+):(\d+):(\d+)/);
|
||||||
my $utimestamp_to = timelocal($6, $5, $4, $3, $2 - 1, $1 - 1900);
|
my $utimestamp_to = strftime("%s", $6, $5, $4, $3, $2 - 1, $1 - 1900);
|
||||||
|
|
||||||
my %modules_src_pointers = init_src_pointers($modules);
|
my %modules_src_pointers = init_src_pointers($modules);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user