Skip to content

Commit 248cb06

Browse files
authored
fix(crons): Change data_category from check_in to monitor (#2598)
1 parent 658c6c9 commit 248cb06

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sentry_sdk/_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"internal",
5555
"profile",
5656
"statsd",
57-
"check_in",
57+
"monitor",
5858
]
5959
SessionStatus = Literal["ok", "exited", "crashed", "abnormal"]
6060
EndpointType = Literal["store", "envelope"]

sentry_sdk/envelope.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ def data_category(self):
263263
elif ty == "statsd":
264264
return "statsd"
265265
elif ty == "check_in":
266-
return "check_in"
266+
return "monitor"
267267
else:
268268
return "default"
269269

0 commit comments

Comments
 (0)