Griesbacher / histou

Adds templates to Grafana in combination with nagflux
GNU General Public License v2.0
35 stars 16 forks source link

allow interfaces with underscore #44

Closed jstark1 closed 2 years ago

jstark1 commented 2 years ago

Interfaces like wan0_0 (perfLabel = wan0_0_trafficin) did not correct match the regex ^(.*?)(\w+?)\w+$, because the \w works like [a-zA-Z0-9]. The proposed change does only match letters for the perfLabel type and direction.

lausser commented 2 years ago

Thanks!