This commit is contained in:
Jérôme Cabanis 2014-03-27 23:25:01 +00:00
commit 1857ddf10a
1 changed files with 5 additions and 0 deletions

View File

@ -207,6 +207,11 @@ function psm_log_uptime($server_id, $status, $latency) {
'latency' => $latency,
)
);
// Limite the number of records in the database to 30 days
$time = time() - (60 * 60 * 24 * 30);
$query = 'DELETE FROM ' . PSM_DB_PREFIX.'servers_uptime WHERE date < "' . date('Y-m-d 00:00:00', $time) . '"';
$db->query($query);
}
/**