forked from GithubBackups/healthchecks
Optimize db query in sendalerts
This commit is contained in:
parent
828bc52f80
commit
11f65ff7aa
@ -82,7 +82,12 @@ class Command(BaseCommand):
|
|||||||
|
|
||||||
now = timezone.now()
|
now = timezone.now()
|
||||||
|
|
||||||
check = Check.objects.filter(alert_after__lt=now, status="up").first()
|
# In PostgreSQL, add this index to run the below query efficiently:
|
||||||
|
# CREATE INDEX api_check_up ON api_check (alert_after) WHERE status = 'up'
|
||||||
|
|
||||||
|
q = Check.objects.filter(alert_after__lt=now, status="up")
|
||||||
|
# Sort by alert_after, to avoid unnecessary sorting by id:
|
||||||
|
check = q.order_by("alert_after").first()
|
||||||
if check is None:
|
if check is None:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user