MetricBoundaryCondition type
定义指标的边界条件
type MetricBoundaryCondition =
| {
direction: "Down"
lower: number
metricId?: string
triggerForMissing?: boolean
type?: "Value" | "Mean"
}
| {
direction: "Up"
metricId?: string
triggerForMissing?: boolean
type?: "Value" | "Mean"
upper: number
}
| {
direction: "Both"
lower: number
metricId?: string
triggerForMissing?: boolean
type?: "Value" | "Mean"
upper: number
}