123456789101112131415161718192021222324252627282930 |
- import type {BadgeType} from 'sentry/components/badge/featureBadge';
- import {t} from 'sentry/locale';
- export const MODULE_TITLE = t('Queues');
- export const BASE_URL = 'queues';
- export const DESTINATION_TITLE = t('Destination Summary');
- export const RELEASE_LEVEL: BadgeType = 'alpha';
- export const releaseLevelAsBadgeProps = {
- isAlpha: (RELEASE_LEVEL as BadgeType) === 'alpha',
- isBeta: (RELEASE_LEVEL as BadgeType) === 'beta',
- isNew: (RELEASE_LEVEL as BadgeType) === 'new',
- };
- export const DEFAULT_QUERY_FILTER = 'span.op:[queue.process,queue.publish]';
- export const CONSUMER_QUERY_FILTER = 'span.op:queue.process';
- export const PRODUCER_QUERY_FILTER = 'span.op:queue.publish';
- export enum MessageActorType {
- PRODUCER = 'producer',
- CONSUMER = 'consumer',
- }
- export const ONBOARDING_CONTENT = {
- title: t('Start collecting Insights about your Queues!'),
- description: t('Our robot is waiting for your first background job to complete.'),
- link: 'https://develop.sentry.dev/sdk/performance/modules/queues/',
- };
|