Merge pull request #534 from prometheus/bjk/systemd_scope

Blacklist systemd scope units
This commit is contained in:
Julius Volz 2017-03-23 16:55:18 +01:00 committed by GitHub
commit 1f2099b1ef

View file

@ -27,7 +27,7 @@ import (
var (
unitWhitelist = flag.String("collector.systemd.unit-whitelist", ".+", "Regexp of systemd units to whitelist. Units must both match whitelist and not match blacklist to be included.")
unitBlacklist = flag.String("collector.systemd.unit-blacklist", "", "Regexp of systemd units to blacklist. Units must both match whitelist and not match blacklist to be included.")
unitBlacklist = flag.String("collector.systemd.unit-blacklist", ".+\\.scope", "Regexp of systemd units to blacklist. Units must both match whitelist and not match blacklist to be included.")
)
type systemdCollector struct {