Skip to content

Commit 95d854a

Browse files
feat(crons): Rename "started" to "recorded" (#91845)
![clipboard.png](https://i.imgur.com/W35jDnc.png)
1 parent ed0a658 commit 95d854a

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

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

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import LoadingError from 'sentry/components/loadingError';
1111
import Pagination from 'sentry/components/pagination';
1212
import {PanelTable} from 'sentry/components/panels/panelTable';
1313
import Placeholder from 'sentry/components/placeholder';
14+
import QuestionTooltip from 'sentry/components/questionTooltip';
1415
import ShortId from 'sentry/components/shortId';
1516
import {
1617
StatusIndicator,
@@ -81,7 +82,13 @@ export function MonitorCheckIns({monitor, monitorEnvs}: Props) {
8182

8283
const headers = [
8384
t('Status'),
84-
t('Started'),
85+
<RecordedHeader key="recorded-header">
86+
{t('Recorded')}
87+
<QuestionTooltip
88+
size="sm"
89+
title={t('The time when Sentry received the first check-in for this job.')}
90+
/>
91+
</RecordedHeader>,
8592
t('Duration'),
8693
t('Issues'),
8794
...(hasMultiEnv ? [t('Environment')] : []),
@@ -249,6 +256,12 @@ function TimeoutLateBy({monitor, duration}: TimeoutLateByProps) {
249256
);
250257
}
251258

259+
const RecordedHeader = styled('div')`
260+
display: flex;
261+
gap: ${space(0.5)};
262+
align-items: center;
263+
`;
264+
252265
const Status = styled('div')`
253266
line-height: 1.1;
254267
`;

0 commit comments

Comments
 (0)