MatcherConfig๐
Matcher is a predicate configuration. Based on the config a set of field(s) or values is filtered in order to apply override / transformation.
It comes with in id ( to resolve implementation from registry) and a configuration thatโs specific to a particular matcher type.
Definition๐
export interface MatcherConfig {
// The matcher id. This is used to find the matcher implementation from registry.
id: string;
// If set, limits this matcher to fields of that type. If not set, "series" mode is used.
scope?: dashboardv2.MatcherScope;
// The matcher options. This is specific to the matcher implementation.
options?: any;
}