Skip to content

Commit 6da80cf

Browse files
feat(detectors): Add timeout to uptime details (#101226)
Fixes [NEW-574: Timeout config should be shown on details page](https://linear.app/getsentry/issue/NEW-574/timeout-config-should-be-shown-on-details-page)
1 parent 3d3a813 commit 6da80cf

File tree

1 file changed

+4
-0
lines changed
  • static/app/views/detectors/components/details/uptime

1 file changed

+4
-0
lines changed

static/app/views/detectors/components/details/uptime/index.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,10 @@ export function UptimeDetectorDetails({detector, project}: UptimeDetectorDetails
8181
keyName={t('Interval')}
8282
value={t('Every %s', getDuration(dataSource.queryObj.intervalSeconds))}
8383
/>
84+
<KeyValueTableRow
85+
keyName={t('Timeout')}
86+
value={t('After %s', getDuration(dataSource.queryObj.timeoutMs / 1000, 2))}
87+
/>
8488
<KeyValueTableRow
8589
keyName={t('URL')}
8690
value={detector.dataSources[0].queryObj.url}

0 commit comments

Comments
 (0)