Monitoring improved to update earlier when any router configuration changes

This commit is contained in:
Eduardo Silva 2024-04-11 12:54:28 -03:00
parent d7c44adc87
commit 23c4090ec1
6 changed files with 109 additions and 11 deletions

View file

@ -8,7 +8,9 @@ class WebadminSettings(models.Model):
current_version = models.PositiveIntegerField(default=0)
latest_version = models.PositiveIntegerField(default=0)
last_checked = models.DateTimeField(blank=True, null=True)
router_config_last_updated = models.DateTimeField(blank=True, null=True)
cron_last_run = models.DateTimeField(blank=True, null=True)
monitoring_last_run = models.DateTimeField(blank=True, null=True)
updated = models.DateTimeField(auto_now=True)
created = models.DateTimeField(auto_now_add=True)