etcd/etcdserver/metrics.go

79 lines
2.2 KiB
Go
Raw Normal View History

2015-02-15 22:36:23 +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.
package etcdserver
import (
"time"
"github.com/coreos/etcd/pkg/runtime"
2016-03-23 03:10:28 +03:00
"github.com/prometheus/client_golang/prometheus"
)
2015-02-15 22:36:23 +03:00
var (
// TODO: with label in v3?
proposeDurations = prometheus.NewHistogram(prometheus.HistogramOpts{
2016-04-26 01:32:52 +03:00
Namespace: "etcd_debugging",
Subsystem: "server",
2016-05-03 00:52:08 +03:00
Name: "proposal_duration_seconds",
Help: "The latency distributions of committing proposal.",
Buckets: prometheus.ExponentialBuckets(0.001, 2, 14),
2015-02-15 22:36:23 +03:00
})
proposePending = prometheus.NewGauge(prometheus.GaugeOpts{
2016-04-26 01:32:52 +03:00
Namespace: "etcd_debugging",
Subsystem: "server",
Name: "proposals_pending",
Help: "The current number of pending proposals.",
2015-02-15 22:36:23 +03:00
})
// This is number of proposal failed in client's view.
// The proposal might be later got committed in raft.
proposeFailed = prometheus.NewCounter(prometheus.CounterOpts{
2016-04-26 01:32:52 +03:00
Namespace: "etcd_debugging",
Subsystem: "server",
2016-05-03 00:52:08 +03:00
Name: "proposals_failed_total",
Help: "The total number of failed proposals.",
2015-02-15 22:36:23 +03:00
})
)
func init() {
prometheus.MustRegister(proposeDurations)
prometheus.MustRegister(proposePending)
prometheus.MustRegister(proposeFailed)
}
func monitorFileDescriptor(done <-chan struct{}) {
ticker := time.NewTicker(5 * time.Second)
defer ticker.Stop()
for {
used, err := runtime.FDUsage()
if err != nil {
plog.Errorf("cannot monitor file descriptor usage (%v)", err)
return
}
limit, err := runtime.FDLimit()
if err != nil {
plog.Errorf("cannot monitor file descriptor usage (%v)", err)
return
}
if used >= limit/5*4 {
plog.Warningf("80%% of the file descriptor limit is used [used = %d, limit = %d]", used, limit)
}
select {
case <-ticker.C:
case <-done:
return
}
}
2015-02-15 22:36:23 +03:00
}