signoz/frontend/src/constants/resourceAttributes.ts

19 lines
307 B
TypeScript
Raw Normal View History

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',
},
];