Skip to content

Commit db30771

Browse files
authored
🔧 chore: make interaction type for messaging slos lowercase (#95454)
1 parent 3192ca4 commit db30771

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/sentry/integrations/messaging/metrics.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@ class MessagingInteractionType(StrEnum):
4949
SEND_ACTIVITY_NOTIFICATION = "SEND_ACTIVITY_NOTIFICATION"
5050
SEND_GENERIC_NOTIFICATION = "SEND_GENERIC_NOTIFICATION"
5151

52+
def __str__(self) -> str:
53+
return self.value.lower()
54+
5255

5356
@dataclass
5457
class MessagingInteractionEvent(IntegrationEventLifecycleMetric):

0 commit comments

Comments
 (0)