func()

in internal/filters/filters.go [186:196]


func (s LabelFilter) Matches(lbls map[string]string) bool {
	if s.Empty() {
		return true
	}
	for _, f := range s {
		if f.Matches(labels.Set(lbls)) {
			return true
		}
	}
	return false
}