Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/sentry/conf/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -986,7 +986,6 @@ def SOCIAL_AUTH_DEFAULT_USERNAME() -> str:
"sentry.tasks.web_vitals_issue_detection",
"sentry.tasks.weekly_escalating_forecast",
"sentry.tempest.tasks",
"sentry.uptime.autodetect.notifications",
"sentry.uptime.autodetect.tasks",
"sentry.uptime.consumers.tasks",
"sentry.uptime.rdap.tasks",
Expand Down
2 changes: 0 additions & 2 deletions src/sentry/features/temporary.py
Original file line number Diff line number Diff line change
Expand Up @@ -412,8 +412,6 @@ def register_temporary_features(manager: FeatureManager) -> None:
manager.add("organizations:view-hierarchy-scrubbing", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False)
# Enable AI-powered assertion suggestions for uptime monitors
manager.add("organizations:uptime-ai-assertion-suggestions", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True)
# Enable email notifications when auto-detected uptime monitors graduate from onboarding
manager.add("organizations:uptime-auto-detected-monitor-emails", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False)
# Enable task-based retry for out-of-order uptime results
manager.add("organizations:uptime-backlog-retry", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False)
# Enable storing HTTP response captures for uptime monitor failures
Expand Down
3 changes: 0 additions & 3 deletions src/sentry/templates/sentry/debug/mail/preview.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,6 @@
<option value="mail/cron-broken-monitor-email/">Broken Cron Monitor</option>
<option value="mail/cron-muted-monitor-email/">Muted Cron Monitor</option>
</optgroup>
<optgroup label="Uptime">
<option value="mail/uptime-auto-detected-monitor-email/">Auto-Detected Uptime Monitor</option>
</optgroup>
<optgroup label="Charts">
<option value="charts/metric-alert-charts/">Metric Alert Charts</option>
<option value="charts/chart-renderer/">Discover Charts</option>
Expand Down

This file was deleted.

This file was deleted.

120 changes: 0 additions & 120 deletions src/sentry/uptime/autodetect/notifications.py

This file was deleted.

3 changes: 0 additions & 3 deletions src/sentry/uptime/autodetect/result_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
)

from sentry import audit_log
from sentry.uptime.autodetect.notifications import send_auto_detected_notifications
from sentry.uptime.autodetect.tasks import set_failed_url
from sentry.uptime.models import UptimeSubscription, get_audit_log_data
from sentry.uptime.subscriptions.subscriptions import (
Expand Down Expand Up @@ -122,8 +121,6 @@ def handle_onboarding_result(
data=get_audit_log_data(detector),
)

send_auto_detected_notifications.delay(detector.id)

metrics.incr(
"uptime.result_processor.autodetection.graduated_onboarding",
sample_rate=1.0,
Expand Down
7 changes: 0 additions & 7 deletions src/sentry/web/debug_urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,6 @@
DebugUnableToDeleteRepository,
)
from sentry.web.frontend.debug.debug_unassigned_email import DebugUnassignedEmailView
from sentry.web.frontend.debug.debug_uptime_auto_detected_monitor_email import (
DebugUptimeAutoDetectedMonitorEmailView,
)
from sentry.web.frontend.debug.debug_weekly_report import DebugWeeklyReportView

urlpatterns = [
Expand Down Expand Up @@ -159,8 +156,4 @@
re_path(r"^debug/charts/metric-alert-charts/$", DebugMetricAlertChartRendererView.as_view()),
re_path(r"^debug/mail/cron-broken-monitor-email/$", DebugCronBrokenMonitorEmailView.as_view()),
re_path(r"^debug/mail/cron-muted-monitor-email/$", DebugCronMutedMonitorEmailView.as_view()),
re_path(
r"^debug/mail/uptime-auto-detected-monitor-email/$",
DebugUptimeAutoDetectedMonitorEmailView.as_view(),
),
]

This file was deleted.

Loading
Loading