|
4 | 4 | "github.com/gobwas/glob"
|
5 | 5 | "io"
|
6 | 6 | "io/ioutil"
|
| 7 | + "regexp" |
| 8 | + "strings" |
7 | 9 |
|
8 | 10 | "gopkg.in/yaml.v2"
|
9 | 11 | )
|
@@ -55,18 +57,53 @@ func (o OSVersion) String() string {
|
55 | 57 | // DeviceGroupConfig describe how to connect to a remote device and what metrics
|
56 | 58 | // to extract from the remote device.
|
57 | 59 | type DeviceGroupConfig struct {
|
58 |
| - OSVersion OSVersion |
59 |
| - StaticName *string `yaml:"-"` |
60 |
| - Matcher glob.Glob `yaml:"-"` |
61 |
| - Port int `yaml:"port,omitempty"` |
62 |
| - Username string `yaml:"username"` |
63 |
| - KeyFile string `yaml:"key_file,omitempty"` |
64 |
| - Password string `yaml:"password,omitempty"` |
65 |
| - ConnectTimeout int `yaml:"connect_timeout,omitempty"` |
66 |
| - CommandTimeout int `yaml:"command_timeout,omitempty"` |
67 |
| - EnabledCollectors []string `yaml:"enabled_collectors,flow"` |
68 |
| - Interfaces []string `yaml:"interfaces,flow"` |
69 |
| - EnabledVLANs []string `yaml:"enabled_vlans,flow"` |
| 60 | + OSVersion OSVersion |
| 61 | + StaticName *string `yaml:"-"` |
| 62 | + Matcher glob.Glob `yaml:"-"` |
| 63 | + Port int `yaml:"port,omitempty"` |
| 64 | + Username string `yaml:"username"` |
| 65 | + KeyFile string `yaml:"key_file,omitempty"` |
| 66 | + Password string `yaml:"password,omitempty"` |
| 67 | + ConnectTimeout int `yaml:"connect_timeout,omitempty"` |
| 68 | + CommandTimeout int `yaml:"command_timeout,omitempty"` |
| 69 | + EnabledCollectors []string `yaml:"enabled_collectors,flow"` |
| 70 | + Interfaces []string `yaml:"interfaces,flow"` |
| 71 | + interfacesRegexp []*regexp.Regexp `yaml:"-"` |
| 72 | + ExcludedInterfaces []string `yaml:"excluded_interfaces,flow"` |
| 73 | + excludedInterfacesRegexp []*regexp.Regexp `yaml:"-"` |
| 74 | + EnabledVLANs []string `yaml:"enabled_vlans,flow"` |
| 75 | +} |
| 76 | + |
| 77 | +func normalizeRegex(str string) string { |
| 78 | + return "^" + strings.TrimRight(strings.TrimLeft(str, "^"), "$") + "$" |
| 79 | +} |
| 80 | + |
| 81 | +func (dgc *DeviceGroupConfig) createInterfaceRegexp() { |
| 82 | + dgc.interfacesRegexp = make([]*regexp.Regexp, len(dgc.Interfaces)) |
| 83 | + for i, str := range dgc.Interfaces { |
| 84 | + dgc.interfacesRegexp[i] = regexp.MustCompile(normalizeRegex(str)) |
| 85 | + } |
| 86 | + dgc.excludedInterfacesRegexp = make([]*regexp.Regexp, len(dgc.ExcludedInterfaces)) |
| 87 | + for i, str := range dgc.ExcludedInterfaces { |
| 88 | + dgc.excludedInterfacesRegexp[i] = regexp.MustCompile(normalizeRegex(str)) |
| 89 | + } |
| 90 | +} |
| 91 | + |
| 92 | +func (dgc *DeviceGroupConfig) MatchInterface(ifName string) bool { |
| 93 | + match := false |
| 94 | + for _, r := range dgc.interfacesRegexp { |
| 95 | + if r.MatchString(ifName) { |
| 96 | + match = true |
| 97 | + break |
| 98 | + } |
| 99 | + } |
| 100 | + for _, r := range dgc.excludedInterfacesRegexp { |
| 101 | + if r.MatchString(ifName) { |
| 102 | + match = false |
| 103 | + break |
| 104 | + } |
| 105 | + } |
| 106 | + return match |
70 | 107 | }
|
71 | 108 |
|
72 | 109 | func newConfig() *Config {
|
@@ -136,6 +173,8 @@ func Load(reader io.Reader) (*Config, error) {
|
136 | 173 | if groupConfig.Port == 0 {
|
137 | 174 | groupConfig.Port = defaultPort
|
138 | 175 | }
|
| 176 | + |
| 177 | + groupConfig.createInterfaceRegexp() |
139 | 178 | }
|
140 | 179 |
|
141 | 180 | return config, nil
|
|
0 commit comments