123456789101112131415161718192021222324 |
- 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',
- }
|