File: memory.go

package info (click to toggle)
prometheus-mongodb-exporter 1.0.0%2Bgit20180522.e755a44-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 668 kB
  • sloc: sh: 65; makefile: 27
file content (36 lines) | stat: -rw-r--r-- 1,156 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package collector

import (
	"github.com/prometheus/client_golang/prometheus"
)

var (
	memory = prometheus.NewGaugeVec(prometheus.GaugeOpts{
		Namespace: Namespace,
		Name:      "memory",
		Help:      "The mem data structure holds information regarding the target system architecture of mongod and current memory use",
	}, []string{"type"})
)

// MemStats tracks the mem stats metrics.
type MemStats struct {
	Bits              float64 `bson:"bits"`
	Resident          float64 `bson:"resident"`
	Virtual           float64 `bson:"virtual"`
	Mapped            float64 `bson:"mapped"`
	MappedWithJournal float64 `bson:"mappedWithJournal"`
}

// Export exports the data to prometheus.
func (memStats *MemStats) Export(ch chan<- prometheus.Metric) {
	memory.WithLabelValues("resident").Set(memStats.Resident)
	memory.WithLabelValues("virtual").Set(memStats.Virtual)
	memory.WithLabelValues("mapped").Set(memStats.Mapped)
	memory.WithLabelValues("mapped_with_journal").Set(memStats.MappedWithJournal)
	memory.Collect(ch)
}

// Describe describes the metrics for prometheus
func (memStats *MemStats) Describe(ch chan<- *prometheus.Desc) {
	memory.Describe(ch)
}