projectAlertRuleConfiguration.js 396 B

12345678910111213141516171819
  1. export function ProjectAlertRuleConfiguration(params = {}) {
  2. return {
  3. actions: [
  4. {
  5. id: 'sentry.rules.actions.notify1',
  6. label: 'Send a notification for all services',
  7. enabled: true,
  8. },
  9. ],
  10. conditions: [
  11. {
  12. id: 'sentry.rules.conditions.1',
  13. label: 'An event is seen',
  14. enabled: true,
  15. },
  16. ],
  17. ...params,
  18. };
  19. }