LabelSelector🔗
Definition🔗
export interface LabelSelector {
// Name of the label to select.
name: string;
// Value to match against.
value: string;
// Operator used to perform the selection.
operator: promql.LabelMatchingOperator;
}