Skip to content

Commit

Permalink
fix(crons): Change data_category from check_in to monitor (#2598)
Browse files Browse the repository at this point in the history
  • Loading branch information
sentrivana committed Dec 14, 2023
1 parent 658c6c9 commit 248cb06
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sentry_sdk/_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"internal",
"profile",
"statsd",
"check_in",
"monitor",
]
SessionStatus = Literal["ok", "exited", "crashed", "abnormal"]
EndpointType = Literal["store", "envelope"]
Expand Down
2 changes: 1 addition & 1 deletion sentry_sdk/envelope.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ def data_category(self):
elif ty == "statsd":
return "statsd"
elif ty == "check_in":
return "check_in"
return "monitor"
else:
return "default"

Expand Down

0 comments on commit 248cb06

Please sign in to comment.