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 @@ -953,7 +953,6 @@ def SOCIAL_AUTH_DEFAULT_USERNAME() -> str:
"sentry.tasks.seer",
"sentry.tasks.statistical_detectors",
"sentry.tasks.store",
"sentry.tasks.summaries.daily_summary",
"sentry.tasks.summaries.weekly_reports",
"sentry.tasks.symbolication",
"sentry.tasks.unmerge",
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 @@ -72,8 +72,6 @@ def register_temporary_features(manager: FeatureManager) -> None:
manager.add("organizations:continuous-profiling-stats", OrganizationFeature, FeatureHandlerStrategy.INTERNAL, api_expose=True)
# Enable the ingestion of profile functions metrics into EAP
manager.add("projects:profile-functions-metrics-eap-ingestion", ProjectFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False)
# Enable daily summary
manager.add("organizations:daily-summary", OrganizationFeature, FeatureHandlerStrategy.INTERNAL, api_expose=False)
# Enables read only dashboards
manager.add("organizations:dashboards-basic", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True, default=True)
# Enables custom editable dashboards
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from __future__ import annotations

from .base import SlackNotificationsMessageBuilder
from .daily_summary import SlackDailySummaryMessageBuilder
from .digest import DigestNotificationMessageBuilder
from .issues import IssueNotificationMessageBuilder

Expand All @@ -12,7 +11,6 @@ def get_message_builder(class_name: str) -> type[SlackNotificationsMessageBuilde
"DigestNotificationMessageBuilder": DigestNotificationMessageBuilder,
"IssueNotificationMessageBuilder": IssueNotificationMessageBuilder,
"SlackNotificationsMessageBuilder": SlackNotificationsMessageBuilder,
"SlackDailySummaryMessageBuilder": SlackDailySummaryMessageBuilder,
}[class_name]


Expand All @@ -21,5 +19,4 @@ def get_message_builder(class_name: str) -> type[SlackNotificationsMessageBuilde
"DigestNotificationMessageBuilder",
"IssueNotificationMessageBuilder",
"SlackNotificationsMessageBuilder",
"SlackDailySummaryMessageBuilder",
)

This file was deleted.

68 changes: 0 additions & 68 deletions src/sentry/notifications/notifications/daily_summary.py

This file was deleted.

6 changes: 0 additions & 6 deletions src/sentry/snuba/referrer.py
Original file line number Diff line number Diff line change
Expand Up @@ -782,12 +782,6 @@ class Referrer(StrEnum):
REPORTS_KEY_TRANSACTIONS = "reports.key_transactions"
REPORTS_OUTCOME_SERIES = "reports.outcome_series"
REPORTS_OUTCOMES = "reports.outcomes"
DAILY_SUMMARY_KEY_ERRORS = "daily_summary.key_errors"
DAILY_SUMMARY_KEY_PERFORMANCE_ISSUES = "daily_summary.key_performance_issues"
DAILY_SUMMARY_KEY_TRANSACTIONS_P95 = "daily_summary.key_transactions.p95"
DAILY_SUMMARY_KEY_TRANSACTIONS = "daily_summary.key_transactions"
DAILY_SUMMARY_OUTCOME_SERIES = "daily_summary.outcome_series"
DAILY_SUMMARY_OUTCOMES = "daily_summary.outcomes"
REPROCESSING2_REPROCESS_GROUP = "reprocessing2.reprocess_group"
REPROCESSING2_START_GROUP_REPROCESSING = "reprocessing2.start_group_reprocessing"
SEARCH_SAMPLE = "search_sample"
Expand Down
Loading
Loading