2009-01-21 Evi Vanoost <vanooste@rcbi.rochester.edu>
* lib/PandoraFMS/DB.pm: Fixes incremental modules git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1384 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
b2a74583c3
commit
412fa2423d
|
@ -1,3 +1,7 @@
|
||||||
|
2009-01-21 Evi Vanoost <vanooste@rcbi.rochester.edu>
|
||||||
|
|
||||||
|
* lib/PandoraFMS/DB.pm: Fixes incremental modules
|
||||||
|
|
||||||
2009-01-21 Ramon Novoa <rnovoa@artica.es>
|
2009-01-21 Ramon Novoa <rnovoa@artica.es>
|
||||||
|
|
||||||
* pandora_server/lib/PandoraFMS/Config.pm: Updated configuration
|
* pandora_server/lib/PandoraFMS/Config.pm: Updated configuration
|
||||||
|
|
|
@ -1039,8 +1039,8 @@ sub module_generic_data_inc (%$$$$$) {
|
||||||
if (is_numeric($data_row[2])){
|
if (is_numeric($data_row[2])){
|
||||||
$data_anterior = $data_row[2];
|
$data_anterior = $data_row[2];
|
||||||
}
|
}
|
||||||
if (is_numeric($data_row[4])){
|
if (is_numeric($data_row[3])){
|
||||||
$timestamp_anterior = $data_row[4];
|
$timestamp_anterior = $data_row[3];
|
||||||
}
|
}
|
||||||
$diferencia = $m_data - $data_anterior;
|
$diferencia = $m_data - $data_anterior;
|
||||||
$timestamp_diferencia = $m_utimestamp - $timestamp_anterior;
|
$timestamp_diferencia = $m_utimestamp - $timestamp_anterior;
|
||||||
|
@ -1062,7 +1062,7 @@ sub module_generic_data_inc (%$$$$$) {
|
||||||
} else {
|
} else {
|
||||||
# Data exists previously
|
# Data exists previously
|
||||||
if ($diferencia != 0) {
|
if ($diferencia != 0) {
|
||||||
my $query2 = "UPDATE tagente_datos_inc SET utimestamp = $m_utimestamp, datos = '$m_data' WHERE id_agente_modulo = $id_agente_modulo";
|
my $query2 = "UPDATE tagente_datos_inc SET utimestamp = $m_utimestamp, datos = '$m_data' WHERE id_agente_modulo = $id_agente_modulo";
|
||||||
$dbh->do($query2);
|
$dbh->do($query2);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue