etcd/mvcc/metrics.go

164 lines
4.8 KiB
Go
Raw Normal View History

2015-08-28 20:35:30 +03:00
// Copyright 2015 CoreOS, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2016-04-25 22:32:58 +03:00
package mvcc
2015-08-28 20:35:30 +03:00
import (
2016-03-23 03:10:28 +03:00
"github.com/prometheus/client_golang/prometheus"
2015-08-28 20:35:30 +03:00
)
var (
rangeCounter = prometheus.NewCounter(
prometheus.CounterOpts{
2016-04-26 01:32:52 +03:00
Namespace: "etcd_debugging",
2016-04-25 22:32:58 +03:00
Subsystem: "mvcc",
2015-08-28 20:35:30 +03:00
Name: "range_total",
Help: "Total number of ranges seen by this member.",
})
putCounter = prometheus.NewCounter(
prometheus.CounterOpts{
2016-04-26 01:32:52 +03:00
Namespace: "etcd_debugging",
2016-04-25 22:32:58 +03:00
Subsystem: "mvcc",
2015-08-28 20:35:30 +03:00
Name: "put_total",
Help: "Total number of puts seen by this member.",
})
deleteCounter = prometheus.NewCounter(
prometheus.CounterOpts{
2016-04-26 01:32:52 +03:00
Namespace: "etcd_debugging",
2016-04-25 22:32:58 +03:00
Subsystem: "mvcc",
2015-08-28 20:35:30 +03:00
Name: "delete_total",
Help: "Total number of deletes seen by this member.",
})
txnCounter = prometheus.NewCounter(
prometheus.CounterOpts{
2016-04-26 01:32:52 +03:00
Namespace: "etcd_debugging",
2016-04-25 22:32:58 +03:00
Subsystem: "mvcc",
2015-08-28 20:35:30 +03:00
Name: "txn_total",
Help: "Total number of txns seen by this member.",
})
2015-08-29 01:16:53 +03:00
keysGauge = prometheus.NewGauge(
prometheus.GaugeOpts{
2016-04-26 01:32:52 +03:00
Namespace: "etcd_debugging",
2016-04-25 22:32:58 +03:00
Subsystem: "mvcc",
2015-08-29 01:16:53 +03:00
Name: "keys_total",
Help: "Total number of keys.",
})
watchStreamGauge = prometheus.NewGauge(
prometheus.GaugeOpts{
2016-04-26 01:32:52 +03:00
Namespace: "etcd_debugging",
2016-04-25 22:32:58 +03:00
Subsystem: "mvcc",
Name: "watch_stream_total",
Help: "Total number of watch streams.",
})
2016-01-03 07:20:22 +03:00
watcherGauge = prometheus.NewGauge(
2015-10-05 03:27:26 +03:00
prometheus.GaugeOpts{
2016-04-26 01:32:52 +03:00
Namespace: "etcd_debugging",
2016-04-25 22:32:58 +03:00
Subsystem: "mvcc",
2016-01-03 07:20:22 +03:00
Name: "watcher_total",
Help: "Total number of watchers.",
2015-10-05 03:27:26 +03:00
})
2016-01-03 07:20:22 +03:00
slowWatcherGauge = prometheus.NewGauge(
2015-10-05 03:27:26 +03:00
prometheus.GaugeOpts{
2016-04-26 01:32:52 +03:00
Namespace: "etcd_debugging",
2016-04-25 22:32:58 +03:00
Subsystem: "mvcc",
2016-01-03 07:20:22 +03:00
Name: "slow_watcher_total",
Help: "Total number of unsynced slow watchers.",
2015-10-05 03:27:26 +03:00
})
totalEventsCounter = prometheus.NewCounter(
prometheus.CounterOpts{
2016-04-26 01:32:52 +03:00
Namespace: "etcd_debugging",
2016-04-25 22:32:58 +03:00
Subsystem: "mvcc",
2015-10-05 03:27:26 +03:00
Name: "events_total",
Help: "Total number of events sent by this member.",
})
pendingEventsGauge = prometheus.NewGauge(
prometheus.GaugeOpts{
2016-04-26 01:32:52 +03:00
Namespace: "etcd_debugging",
2016-04-25 22:32:58 +03:00
Subsystem: "mvcc",
2015-10-05 03:27:26 +03:00
Name: "pending_events_total",
Help: "Total number of pending events to be sent.",
})
2015-08-28 20:35:30 +03:00
indexCompactionPauseDurations = prometheus.NewHistogram(
prometheus.HistogramOpts{
2016-04-26 01:32:52 +03:00
Namespace: "etcd_debugging",
2016-04-25 22:32:58 +03:00
Subsystem: "mvcc",
2015-08-28 20:35:30 +03:00
Name: "index_compaction_pause_duration_milliseconds",
2016-01-08 00:18:50 +03:00
Help: "Bucketed histogram of index compaction pause duration.",
2015-08-28 20:35:30 +03:00
// 0.5ms -> 1second
Buckets: prometheus.ExponentialBuckets(0.5, 2, 12),
})
dbCompactionPauseDurations = prometheus.NewHistogram(
prometheus.HistogramOpts{
2016-04-26 01:32:52 +03:00
Namespace: "etcd_debugging",
2016-04-25 22:32:58 +03:00
Subsystem: "mvcc",
2015-08-28 20:35:30 +03:00
Name: "db_compaction_pause_duration_milliseconds",
2016-01-08 00:18:50 +03:00
Help: "Bucketed histogram of db compaction pause duration.",
2015-08-28 20:35:30 +03:00
// 1ms -> 4second
Buckets: prometheus.ExponentialBuckets(1, 2, 13),
})
dbCompactionTotalDurations = prometheus.NewHistogram(
prometheus.HistogramOpts{
2016-04-26 01:32:52 +03:00
Namespace: "etcd_debugging",
2016-04-25 22:32:58 +03:00
Subsystem: "mvcc",
2015-08-28 20:35:30 +03:00
Name: "db_compaction_total_duration_milliseconds",
Help: "Bucketed histogram of db compaction total duration.",
// 100ms -> 800second
Buckets: prometheus.ExponentialBuckets(100, 2, 14),
})
2015-10-06 02:15:44 +03:00
dbTotalSize = prometheus.NewGauge(prometheus.GaugeOpts{
2016-04-26 01:32:52 +03:00
Namespace: "etcd_debugging",
2016-04-25 22:32:58 +03:00
Subsystem: "mvcc",
2015-10-06 02:15:44 +03:00
Name: "db_total_size_in_bytes",
Help: "Total size of the underlying database in bytes.",
})
2015-08-28 20:35:30 +03:00
)
func init() {
prometheus.MustRegister(rangeCounter)
prometheus.MustRegister(putCounter)
prometheus.MustRegister(deleteCounter)
2015-08-29 01:17:16 +03:00
prometheus.MustRegister(txnCounter)
2015-08-29 01:16:53 +03:00
prometheus.MustRegister(keysGauge)
prometheus.MustRegister(watchStreamGauge)
2016-01-03 07:20:22 +03:00
prometheus.MustRegister(watcherGauge)
prometheus.MustRegister(slowWatcherGauge)
prometheus.MustRegister(totalEventsCounter)
2015-10-05 03:27:26 +03:00
prometheus.MustRegister(pendingEventsGauge)
2015-08-28 20:35:30 +03:00
prometheus.MustRegister(indexCompactionPauseDurations)
prometheus.MustRegister(dbCompactionPauseDurations)
prometheus.MustRegister(dbCompactionTotalDurations)
2015-10-06 02:15:44 +03:00
prometheus.MustRegister(dbTotalSize)
2015-08-28 20:35:30 +03:00
}
2015-10-05 03:27:26 +03:00
// ReportEventReceived reports that an event is received.
// This function should be called when the external systems received an
2016-04-25 22:32:58 +03:00
// event from mvcc.Watcher.
2015-10-05 03:27:26 +03:00
func ReportEventReceived() {
pendingEventsGauge.Dec()
totalEventsCounter.Inc()
}