alerts.ts 357 B

123456789101112
  1. import type {AlertConfig} from 'sentry/views/insights/common/components/chartPanel';
  2. export const ALERTS: Record<string, AlertConfig> = {
  3. duration: {
  4. aggregate: 'avg(d:spans/exclusive_time@millisecond)',
  5. query: 'span.module:db has:span.description',
  6. },
  7. spm: {
  8. aggregate: 'spm()',
  9. query: 'span.module:db has:span.description',
  10. },
  11. };