123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 |
- import {
- Group,
- IssueCategory,
- Organization,
- Project,
- SharedViewOrganization,
- } from 'sentry/types';
- import {Entry, EntryType, Event, EventTransaction} from 'sentry/types/event';
- import {Breadcrumbs} from './interfaces/breadcrumbs';
- import {Csp} from './interfaces/csp';
- import {DebugMeta} from './interfaces/debugMeta';
- import {Exception} from './interfaces/exception';
- import {ExceptionV2} from './interfaces/exceptionV2';
- import {Generic} from './interfaces/generic';
- import {Message} from './interfaces/message';
- import {Resources} from './interfaces/performance/resources';
- import {SpanEvidenceSection} from './interfaces/performance/spanEvidence';
- import {getResourceDescription, getResourceLinks} from './interfaces/performance/utils';
- import {Request} from './interfaces/request';
- import {Spans} from './interfaces/spans';
- import {StackTrace} from './interfaces/stackTrace';
- import {StackTraceV2} from './interfaces/stackTraceV2';
- import {Template} from './interfaces/template';
- import {Threads} from './interfaces/threads';
- import {ThreadsV2} from './interfaces/threadsV2';
- type Props = {
- entry: Entry;
- event: Event;
- organization: SharedViewOrganization | Organization;
- projectSlug: Project['slug'];
- group?: Group;
- isShare?: boolean;
- };
- export function EventEntry({
- entry,
- projectSlug,
- event,
- organization,
- group,
- isShare,
- }: Props) {
- const hasHierarchicalGrouping =
- !!organization.features?.includes('grouping-stacktrace-ui') &&
- !!(event.metadata.current_tree_label || event.metadata.finest_tree_label);
- const hasNativeStackTraceV2 = !!organization.features?.includes(
- 'native-stack-trace-v2'
- );
- const groupingCurrentLevel = group?.metadata?.current_level;
- switch (entry.type) {
- case EntryType.EXCEPTION: {
- return hasNativeStackTraceV2 ? (
- <ExceptionV2
- event={event}
- data={entry.data}
- projectId={projectSlug}
- groupingCurrentLevel={groupingCurrentLevel}
- hasHierarchicalGrouping={hasHierarchicalGrouping}
- />
- ) : (
- <Exception
- event={event}
- data={entry.data}
- projectId={projectSlug}
- groupingCurrentLevel={groupingCurrentLevel}
- hasHierarchicalGrouping={hasHierarchicalGrouping}
- />
- );
- }
- case EntryType.MESSAGE: {
- return <Message event={event} data={entry.data} />;
- }
- case EntryType.REQUEST: {
- return <Request event={event} data={entry.data} />;
- }
- case EntryType.STACKTRACE: {
- return hasNativeStackTraceV2 ? (
- <StackTraceV2
- event={event}
- data={entry.data}
- projectId={projectSlug}
- groupingCurrentLevel={groupingCurrentLevel}
- hasHierarchicalGrouping={hasHierarchicalGrouping}
- />
- ) : (
- <StackTrace
- event={event}
- data={entry.data}
- projectId={projectSlug}
- groupingCurrentLevel={groupingCurrentLevel}
- hasHierarchicalGrouping={hasHierarchicalGrouping}
- />
- );
- }
- case EntryType.TEMPLATE: {
- return <Template event={event} data={entry.data} />;
- }
- case EntryType.CSP: {
- return <Csp event={event} data={entry.data} />;
- }
- case EntryType.EXPECTCT:
- case EntryType.EXPECTSTAPLE: {
- const {data, type} = entry;
- return <Generic type={type} data={data} />;
- }
- case EntryType.HPKP:
- return (
- <Generic type={entry.type} data={entry.data} meta={event._meta?.hpkp ?? {}} />
- );
- case EntryType.BREADCRUMBS: {
- return (
- <Breadcrumbs
- data={entry.data}
- organization={organization as Organization}
- event={event}
- isShare={isShare}
- projectSlug={projectSlug}
- />
- );
- }
- case EntryType.THREADS: {
- return hasNativeStackTraceV2 ? (
- <ThreadsV2
- event={event}
- data={entry.data}
- projectId={projectSlug}
- groupingCurrentLevel={groupingCurrentLevel}
- hasHierarchicalGrouping={hasHierarchicalGrouping}
- />
- ) : (
- <Threads
- event={event}
- data={entry.data}
- projectId={projectSlug}
- groupingCurrentLevel={groupingCurrentLevel}
- hasHierarchicalGrouping={hasHierarchicalGrouping}
- />
- );
- }
- case EntryType.DEBUGMETA:
- return (
- <DebugMeta
- event={event}
- projectId={projectSlug}
- groupId={group?.id}
- organization={organization as Organization}
- data={entry.data}
- />
- );
- case EntryType.SPANS:
- // XXX: We currently do not show spans in the share view,
- if (isShare) {
- return null;
- }
- if (group?.issueCategory === IssueCategory.PERFORMANCE) {
- return (
- <SpanEvidenceSection
- issueType={group?.issueType}
- event={event as EventTransaction}
- organization={organization as Organization}
- />
- );
- }
- return (
- <Spans
- event={event as EventTransaction}
- organization={organization as Organization}
- />
- );
- case EntryType.RESOURCES:
- if (!group || !group.issueType) {
- return null;
- }
- return (
- <Resources
- description={getResourceDescription(group.issueType)}
- links={getResourceLinks(group.issueType, event.platform)}
- />
- );
- default:
- // this should not happen
- /* eslint no-console:0 */
- window.console &&
- console.error &&
- console.error('Unregistered interface: ' + (entry as any).type);
- return null;
- }
- }
|