import {Fragment} from 'react'; import {browserHistory, RouteComponentProps} from 'react-router'; import styled from '@emotion/styled'; import {t} from 'sentry/locale'; import AsyncView from 'sentry/views/asyncView'; import MonitorForm from './monitorForm'; import {Monitor} from './types'; type Props = AsyncView['props'] & RouteComponentProps<{orgId: string}, {}>; export default class CreateMonitor extends AsyncView { getTitle() { return `Monitors - ${this.props.params.orgId}`; } onSubmitSuccess = (data: Monitor) => { browserHistory.push(`/organizations/${this.props.params.orgId}/monitors/${data.id}/`); }; renderBody() { return (

New Monitor

{t( `Creating a monitor will allow you to track the executions of a scheduled job in your organization. For example, ensure a cron job that is scheduled to run once a day executes and finishes within a specified duration.` )}
); } } const HelpText = styled('p')` color: ${p => p.theme.subText}; max-width: 760px; `;