signoz/frontend/src/constants/resourceAttributes.ts
Vishal Sharma 05ce03e67d
feat: tag filtering frontend changes (#2116)
feat: tag filtering frontend changes
2023-01-25 15:20:27 +05:30

19 lines
307 B
TypeScript

import { OperatorValues } from 'types/reducer/trace';
export const OperatorConversions: Array<{
label: string;
metricValue: string;
traceValue: OperatorValues;
}> = [
{
label: 'IN',
metricValue: '=~',
traceValue: 'In',
},
{
label: 'Not IN',
metricValue: '!~',
traceValue: 'NotIn',
},
];