Remove munin exporter

The exporter was never fully working and it turns out the protocol is
much harder to support than thought. Since we're not depending on munin
anyway, I've dropped it.
This commit is contained in:
Johannes 'fish' Ziemke 2013-07-24 14:15:40 +02:00
commit cbd350a381
2 changed files with 1 additions and 242 deletions

View file

@ -85,12 +85,7 @@ func New(configFile string) (e exporter, err error) {
log.Fatalf("Couldn't attach collector: %s", err)
}
cm, err := NewMuninCollector(e.config, e.registry)
if err != nil {
log.Fatalf("Couldn't attach collector: %s", err)
}
e.collectors = []Collector{&cn, &cg, &cm}
e.collectors = []Collector{&cn, &cg}
if e.config.ListeningAddress != "" {
e.listeningAddress = e.config.ListeningAddress