-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathback.py
99 lines (78 loc) · 2.96 KB
/
back.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
import sentry_sdk
from sentry_sdk.integrations.asyncio import AsyncioIntegration
import os
BACKEND = os.getenv("BACKEND", "FIKA").upper()
SENTRY = os.getenv("SENTRY", "False").lower() in ("true", "1", "y")
def before_breadcrumb(crumb, hint):
# Dont log subprocess breadcrumbs
if crumb["type"] == "subprocess":
# If we wanted to allow certain threads we could do it like this:
# thread_name = crumb.get("data", {}).get("thread.name", None) -> e.g. MainThread or WifiAutoConnect
# thread_name = crumb.get("message", None) -> e.g. 'nmcli device show wlan0'
return None
return crumb
def is_tornado_session_disconnected(event):
exc = event.get("exception", {})
values = exc.get("values", [])
for item in values:
mechanism = item.get("mechanism", {})
value = item.get("value", "")
if (
mechanism.get("type", "") == "tornado"
and mechanism.get("handled", None) is False
and (value == "Session is disconnected" or "Invalid session" in value)
):
return True
return False
def before_send(event, hint):
if is_tornado_session_disconnected(event):
return None
return event
if BACKEND == "FIKA" or SENTRY:
print("Initializing sentry")
sentry_sdk.init(
dsn="https://0b7872daf08aae52a8d654472bc8bb26@o4506723336060928.ingest.us.sentry.io/4507635208224768",
# Set traces_sample_rate to 1.0 to capture 100%
# of transactions for performance monitoring.
traces_sample_rate=0.0,
# Set profiles_sample_rate to 1.0 to profile 100%
# of sampled transactions.
# We recommend adjusting this value in production.
profiles_sample_rate=0.0,
integrations=[
AsyncioIntegration(),
],
ignore_errors=[
KeyboardInterrupt,
],
before_breadcrumb=before_breadcrumb,
before_send=before_send,
)
else:
print("Skipping Sentry initialization")
def run():
from tornado.websocket import WebSocketClosedError
from db_migration_updater import update_db_migrations
from log import MeticulousLogger
from backend import main as backend_main
from shot_manager import ShotManager
# Add ignored errors to sentry now that the import suceeded
client = sentry_sdk.get_client()
client.options["ignore_errors"].append(WebSocketClosedError)
logger = MeticulousLogger.getLogger(__name__)
try:
try:
ShotManager.init()
except Exception as e:
logger.error("Failed to initialize ShotManager", exc_info=e)
logger.info("Running database migrations")
try:
update_db_migrations()
except Exception as e:
logger.error("Failed to run database migrations", exc_info=e)
backend_main()
except Exception as e:
logger.exception("main() failed", exc_info=e, stack_info=True)
exit(1)
if __name__ == "__main__":
run()