goCollector: change goroutines and treads type

Change gorountines and threads created Gauge to NewConstMetric.

Signed-off-by: Peng Gao <peng.gao.dut@gmail.com>
This commit is contained in:
Peng Gao 2017-02-15 13:06:22 +08:00
parent fa1cd67d1e
commit efb2f142f3
2 changed files with 44 additions and 49 deletions

View File

@ -8,8 +8,8 @@ import (
) )
type goCollector struct { type goCollector struct {
goroutines Gauge goroutinesDesc *Desc
threads Gauge threadsDesc *Desc
gcDesc *Desc gcDesc *Desc
// metrics to describe and collect // metrics to describe and collect
@ -20,16 +20,14 @@ type goCollector struct {
// go process. // go process.
func NewGoCollector() Collector { func NewGoCollector() Collector {
return &goCollector{ return &goCollector{
goroutines: NewGauge(GaugeOpts{ goroutinesDesc: NewDesc(
Namespace: "go", "go_goroutines",
Name: "goroutines", "Number of goroutines that currently exist.",
Help: "Number of goroutines that currently exist.", nil, nil),
}), threadsDesc: NewDesc(
threads: NewGauge(GaugeOpts{ "go_threads",
Namespace: "go", "Number of OS threads created",
Name: "threads", nil, nil),
Help: "Number of threads created.",
}),
gcDesc: NewDesc( gcDesc: NewDesc(
"go_gc_duration_seconds", "go_gc_duration_seconds",
"A summary of the GC invocation durations.", "A summary of the GC invocation durations.",
@ -230,8 +228,8 @@ func memstatNamespace(s string) string {
// Describe returns all descriptions of the collector. // Describe returns all descriptions of the collector.
func (c *goCollector) Describe(ch chan<- *Desc) { func (c *goCollector) Describe(ch chan<- *Desc) {
ch <- c.goroutines.Desc() ch <- c.goroutinesDesc
ch <- c.threads.Desc() ch <- c.threadsDesc
ch <- c.gcDesc ch <- c.gcDesc
for _, i := range c.metrics { for _, i := range c.metrics {
ch <- i.desc ch <- i.desc
@ -240,11 +238,9 @@ func (c *goCollector) Describe(ch chan<- *Desc) {
// Collect returns the current state of all metrics of the collector. // Collect returns the current state of all metrics of the collector.
func (c *goCollector) Collect(ch chan<- Metric) { func (c *goCollector) Collect(ch chan<- Metric) {
c.goroutines.Set(float64(runtime.NumGoroutine())) ch <- MustNewConstMetric(c.goroutinesDesc, GaugeValue, float64(runtime.NumGoroutine()))
ch <- c.goroutines
n, _ := runtime.ThreadCreateProfile(nil) n, _ := runtime.ThreadCreateProfile(nil)
c.threads.Set(float64(n)) ch <- MustNewConstMetric(c.threadsDesc, GaugeValue, float64(n))
ch <- c.threads
var stats debug.GCStats var stats debug.GCStats
stats.PauseQuantiles = make([]time.Duration, 5) stats.PauseQuantiles = make([]time.Duration, 5)

View File

@ -29,10 +29,10 @@ func TestGoCollector(t *testing.T) {
for { for {
select { select {
case metric := <-ch: case m := <-ch:
switch m := metric.(type) { // m can be Gauge or Counter,
// Attention, this also catches Counter... // currently just test the go_goroutines Gauge
case Gauge: // and ignore others.
if m.Desc().fqName != "go_goroutines" { if m.Desc().fqName != "go_goroutines" {
continue continue
} }
@ -59,7 +59,6 @@ func TestGoCollector(t *testing.T) {
<-ch <-ch
<-ch <-ch
return return
}
case <-time.After(1 * time.Second): case <-time.After(1 * time.Second):
t.Fatalf("expected collect timed out") t.Fatalf("expected collect timed out")
} }