Delete old probe logs older than 1 month +2 days

This commit is contained in:
ditatompel 2024-05-08 19:28:42 +07:00
parent f931066c8c
commit 738c0826c8
No known key found for this signature in database
GPG key ID: 31D3D06D77950979

View file

@ -176,8 +176,8 @@ func (repo *CronRepo) execCron(slug string) {
}
func (repo *CronRepo) deleteOldProbeLogs() {
// for now, we only delete stats older than 2 days
startTs := time.Now().AddDate(0, 0, -2).Unix()
// for now, we only delete stats older than 1 month +2 days
startTs := time.Now().AddDate(0, -1, -2).Unix()
query := `DELETE FROM tbl_probe_log WHERE date_checked < ?`
_, err := repo.db.Exec(query, startTs)
if err != nil {