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 37
|
package collector
import (
"github.com/prometheus/client_golang/prometheus"
)
var (
assertsTotal = prometheus.NewGaugeVec(prometheus.GaugeOpts{
Namespace: Namespace,
Name: "asserts_total",
Help: "The asserts document reports the number of asserts on the database. While assert errors are typically uncommon, if there are non-zero values for the asserts, you should check the log file for the mongod process for more information. In many cases these errors are trivial, but are worth investigating.",
}, []string{"type"})
)
// AssertsStats has the assets metrics
type AssertsStats struct {
Regular float64 `bson:"regular"`
Warning float64 `bson:"warning"`
Msg float64 `bson:"msg"`
User float64 `bson:"user"`
Rollovers float64 `bson:"rollovers"`
}
// Export exports the metrics to prometheus.
func (asserts *AssertsStats) Export(ch chan<- prometheus.Metric) {
assertsTotal.WithLabelValues("regular").Set(asserts.Regular)
assertsTotal.WithLabelValues("warning").Set(asserts.Warning)
assertsTotal.WithLabelValues("msg").Set(asserts.Msg)
assertsTotal.WithLabelValues("user").Set(asserts.User)
assertsTotal.WithLabelValues("rollovers").Set(asserts.Rollovers)
assertsTotal.Collect(ch)
}
// Describe describes the metrics for prometheus
func (asserts *AssertsStats) Describe(ch chan<- *prometheus.Desc) {
assertsTotal.Describe(ch)
}
|