Fix ganglia namespace

Remove double underscore usage.
This commit is contained in:
Tobias Schmidt 2014-11-26 18:15:02 -05:00
parent 139155a243
commit 0aacec2335
1 changed files with 5 additions and 5 deletions

View File

@ -17,10 +17,10 @@ import (
)
const (
gangliaAddress = "127.0.0.1:8649"
gangliaProto = "tcp"
gangliaTimeout = 30 * time.Second
gangliaMetricsPrefix = "ganglia_"
gangliaAddress = "127.0.0.1:8649"
gangliaProto = "tcp"
gangliaTimeout = 30 * time.Second
gangliaNamespace = "ganglia"
)
type gmondCollector struct {
@ -95,7 +95,7 @@ func (c *gmondCollector) setMetric(name, cluster string, metric ganglia.Metric)
glog.V(1).Infof("Register %s: %s", name, desc)
c.metrics[name] = prometheus.NewGaugeVec(
prometheus.GaugeOpts{
Namespace: gangliaMetricsPrefix,
Namespace: gangliaNamespace,
Name: name,
Help: desc,
},