Browse Source

fix(crons): Temporarily increase frequency of the broken monitor task (#68632)

We want to capture profiles for this task to see what's up with
performance.
Dan Fuller 11 months ago
parent
commit
768f4e23e1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/sentry/conf/server.py

+ 1 - 1
src/sentry/conf/server.py

@@ -1042,7 +1042,7 @@ CELERYBEAT_SCHEDULE_REGION = {
     "monitors-detect-broken-monitor-envs": {
         "task": "sentry.monitors.tasks.detect_broken_monitor_envs",
         # 8:00 PDT, 11:00 EDT, 15:00 UTC
-        "schedule": crontab(minute="0", hour="15", day_of_week="mon-fri"),
+        "schedule": crontab(minute="*/30"),
         "options": {"expires": 15 * 60},
     },
     "clear-expired-snoozes": {