Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/jaeger-ui/src/components/common/ErrorMessage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { BrokenLinkCircleIcon } from './icons/BrokenLinkCircleIcon';
import { isString } from '../../utils/ts/typeGuards/isString';

const SLACK_CHANNEL_URL =
'https://join.slack.com/t/continuous-feedback/shared_invite/zt-1hk5rbjow-yXOIxyyYOLSXpCZ4RXstgA';
'https://join.slack.com/t/continuous-feedback/shared_invite/zt-2gsif7wdy-6Jf17HIJESc2tknT5gybtw';

type ErrorMessageProps = {
className?: string;
Expand Down
12 changes: 0 additions & 12 deletions packages/jaeger-ui/src/components/common/InsightIcon/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,6 @@ export const getInsightTypeInfo = (
icon: SQLDatabaseIcon,
label: 'Session in View Query Detected',
},
// deprecated
[InsightType.EndpointChattyApi]: {
icon: SQLDatabaseIcon,
label: 'Excessive API Calls Detected',
},
[InsightType.EndpointChattyApiV2]: {
icon: SQLDatabaseIcon,
label: 'Excessive API Calls Detected',
Expand All @@ -119,11 +114,6 @@ export const getInsightTypeInfo = (
icon: SQLDatabaseIcon,
label: 'Inefficient Query',
},
// deprecated
[InsightType.EndpointQueryOptimization]: {
icon: SQLDatabaseIcon,
label: 'Inefficient Query',
},
[InsightType.EndpointQueryOptimizationV2]: {
icon: SQLDatabaseIcon,
label: 'Inefficient Query',
Expand Down Expand Up @@ -166,10 +156,8 @@ export const getInsightTypeOrderPriority = (type: string): number => {
[InsightType.NormalUsage]: 50,
[InsightType.EndpointSpanNPlusOne]: 55,
[InsightType.EndpointSessionInView]: 56,
[InsightType.EndpointChattyApi]: 57, // deprecated
[InsightType.EndpointChattyApiV2]: 57,
[InsightType.EndpointHighNumberOfQueries]: 58,
[InsightType.EndpointQueryOptimization]: 59, // deprecated
[InsightType.EndpointQueryOptimizationV2]: 59,

// Span insights
Expand Down