alerts.tsx 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. import type {SchemaFormConfig} from 'sentry/views/settings/organizationIntegrations/sentryAppExternalForm';
  2. import type {IssueConfigField} from './integrations';
  3. type IssueAlertRuleFormField =
  4. | {
  5. type: 'choice';
  6. choices?: [string, string][];
  7. initial?: string;
  8. placeholder?: string;
  9. }
  10. | {
  11. type: 'string';
  12. initial?: string;
  13. placeholder?: string;
  14. }
  15. | {
  16. type: 'number';
  17. initial?: string;
  18. placeholder?: number | string;
  19. };
  20. /**
  21. * These templates that tell the UI how to render the action or condition
  22. * and what fields it needs
  23. */
  24. export interface IssueAlertRuleActionTemplate {
  25. enabled: boolean;
  26. id: string;
  27. label: string;
  28. actionType?: 'ticket' | 'sentryapp';
  29. formFields?:
  30. | {
  31. [key: string]: IssueAlertRuleFormField;
  32. }
  33. | SchemaFormConfig;
  34. link?: string;
  35. prompt?: string;
  36. sentryAppInstallationUuid?: string;
  37. ticketType?: string;
  38. }
  39. export type IssueAlertRuleConditionTemplate = IssueAlertRuleActionTemplate;
  40. /**
  41. * These are the action or condition data that the user is editing or has saved.
  42. */
  43. export interface IssueAlertRuleAction
  44. extends Omit<IssueAlertRuleActionTemplate, 'formFields' | 'enabled'> {
  45. // These are the same values as the keys in `formFields` for a template
  46. [key: string]: any;
  47. dynamic_form_fields?: IssueConfigField[];
  48. }
  49. export type IssueAlertRuleCondition = Omit<
  50. IssueAlertRuleConditionTemplate,
  51. 'formFields' | 'enabled'
  52. > & {
  53. dynamic_form_fields?: IssueConfigField[];
  54. } & {
  55. // These are the same values as the keys in `formFields` for a template
  56. [key: string]: number | string;
  57. };
  58. export interface UnsavedIssueAlertRule {
  59. /** When an issue matches [actionMatch] of the following */
  60. actionMatch: 'all' | 'any' | 'none';
  61. actions: IssueAlertRuleAction[];
  62. conditions: IssueAlertRuleCondition[];
  63. /** If that issue has [filterMatch] of these properties */
  64. filterMatch: 'all' | 'any' | 'none';
  65. filters: IssueAlertRuleCondition[];
  66. frequency: number;
  67. name: string;
  68. environment?: null | string;
  69. owner?: string | null;
  70. }
  71. // Issue-based alert rule
  72. export interface IssueAlertRule extends UnsavedIssueAlertRule {
  73. createdBy: {email: string; id: number; name: string} | null;
  74. dateCreated: string;
  75. id: string;
  76. projects: string[];
  77. snooze: boolean;
  78. status: 'active' | 'disabled';
  79. errors?: {detail: string}[];
  80. lastTriggered?: string;
  81. snoozeCreatedBy?: string;
  82. snoozeForEveryone?: boolean;
  83. }
  84. // Project's alert rule stats
  85. export type ProjectAlertRuleStats = {
  86. count: number;
  87. date: string;
  88. };
  89. export enum MailActionTargetType {
  90. ISSUE_OWNERS = 'IssueOwners',
  91. TEAM = 'Team',
  92. MEMBER = 'Member',
  93. RELEASE_MEMBERS = 'ReleaseMembers',
  94. }
  95. export enum AssigneeTargetType {
  96. UNASSIGNED = 'Unassigned',
  97. TEAM = 'Team',
  98. MEMBER = 'Member',
  99. }
  100. export type NoteType = {
  101. mentions: string[];
  102. text: string;
  103. };
  104. /**
  105. * Used when determining what types of actions a rule has. The default action is "sentry.mail.actions.NotifyEmailAction"
  106. * while other actions can be integration (Slack, PagerDuty, etc) actions. We need to know this to determine what kind of muting
  107. * the alert should have.
  108. */
  109. export enum RuleActionsCategories {
  110. ALL_DEFAULT = 'all_default',
  111. SOME_DEFAULT = 'some_default',
  112. NO_DEFAULT = 'no_default',
  113. }