mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-29 16:14:42 +00:00
19 lines
308 B
TypeScript
19 lines
308 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: 'not in',
|
|
},
|
|
];
|