Skip to content

Commit 4482fc2

Browse files
feat(crons): Indicate when a timeout is incomplete (#91773)
This looks like this when no terminating check-in was sent. <img alt="clipboard.png" width="1051" src="https://i.imgur.com/JLOpGtB.png" />k Fixes [NEW-332: If a timeout does NOT have a duration indicate `incomplete`](https://linear.app/getsentry/issue/NEW-332/if-a-timeout-does-not-have-a-duration-indicate-incomplete)
1 parent f120079 commit 4482fc2

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

static/app/views/insights/crons/components/monitorCheckIns.tsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,16 @@ export function MonitorCheckIns({monitor, monitorEnvs}: Props) {
144144
<TimeoutLateBy monitor={monitor} duration={checkIn.duration} />
145145
)}
146146
</DurationContainer>
147+
) : checkIn.status === CheckInStatus.TIMEOUT ? (
148+
<div>
149+
<Tooltip
150+
title={t(
151+
'An in-progress check-in was received, but no closing check-in followed. Your job may be terminating before it reports to Sentry.'
152+
)}
153+
>
154+
<Tag type="error">{t('Incomplete')}</Tag>
155+
</Tooltip>
156+
</div>
147157
) : (
148158
emptyCell
149159
)}

0 commit comments

Comments
 (0)