2019-06-15 19:21:44 +00:00
|
|
|
package stats
|
2019-06-13 09:01:51 +00:00
|
|
|
|
2019-06-14 20:06:01 +00:00
|
|
|
import (
|
2019-06-16 04:46:55 +00:00
|
|
|
"fmt"
|
2020-09-24 12:45:39 +00:00
|
|
|
"log"
|
2021-09-07 23:43:54 +00:00
|
|
|
"net"
|
2020-09-24 12:45:39 +00:00
|
|
|
"net/http"
|
2019-06-16 04:46:55 +00:00
|
|
|
"os"
|
2021-09-07 23:43:54 +00:00
|
|
|
"strconv"
|
2020-05-15 04:08:34 +00:00
|
|
|
"strings"
|
2019-06-14 20:06:01 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
2021-06-22 07:54:13 +00:00
|
|
|
"github.com/prometheus/client_golang/prometheus/collectors"
|
2020-09-24 12:45:39 +00:00
|
|
|
"github.com/prometheus/client_golang/prometheus/promhttp"
|
2019-06-14 20:06:01 +00:00
|
|
|
"github.com/prometheus/client_golang/prometheus/push"
|
2022-07-29 07:17:28 +00:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/glog"
|
2019-06-14 20:06:01 +00:00
|
|
|
)
|
2019-06-13 09:01:51 +00:00
|
|
|
|
2022-07-27 11:31:49 +00:00
|
|
|
// Readonly volume types
|
|
|
|
const (
|
|
|
|
IsReadOnly = "IsReadOnly"
|
|
|
|
NoWriteOrDelete = "noWriteOrDelete"
|
|
|
|
NoWriteCanDelete = "noWriteCanDelete"
|
|
|
|
IsDiskSpaceLow = "isDiskSpaceLow"
|
|
|
|
)
|
|
|
|
|
|
|
|
var readOnlyVolumeTypes = [4]string{IsReadOnly, NoWriteOrDelete, NoWriteCanDelete, IsDiskSpaceLow}
|
|
|
|
|
2019-06-13 09:01:51 +00:00
|
|
|
var (
|
2020-09-30 19:59:39 +00:00
|
|
|
Gather = prometheus.NewRegistry()
|
2019-06-14 07:54:56 +00:00
|
|
|
|
2022-01-24 14:09:43 +00:00
|
|
|
MasterClientConnectCounter = prometheus.NewCounterVec(
|
|
|
|
prometheus.CounterOpts{
|
|
|
|
Namespace: "SeaweedFS",
|
|
|
|
Subsystem: "wdclient",
|
2022-01-25 09:42:47 +00:00
|
|
|
Name: "connect_updates",
|
2022-01-24 14:09:43 +00:00
|
|
|
Help: "Counter of master client leader updates.",
|
|
|
|
}, []string{"type"})
|
|
|
|
|
2022-01-24 15:13:07 +00:00
|
|
|
MasterRaftIsleader = prometheus.NewGauge(
|
|
|
|
prometheus.GaugeOpts{
|
|
|
|
Namespace: "SeaweedFS",
|
|
|
|
Subsystem: "master",
|
2022-01-25 09:42:47 +00:00
|
|
|
Name: "is_leader",
|
2022-01-24 15:13:07 +00:00
|
|
|
Help: "is leader",
|
|
|
|
})
|
|
|
|
|
2022-01-24 14:09:43 +00:00
|
|
|
MasterReceivedHeartbeatCounter = prometheus.NewCounterVec(
|
|
|
|
prometheus.CounterOpts{
|
|
|
|
Namespace: "SeaweedFS",
|
|
|
|
Subsystem: "master",
|
2022-01-25 09:42:47 +00:00
|
|
|
Name: "received_heartbeats",
|
2022-01-24 14:09:43 +00:00
|
|
|
Help: "Counter of master received heartbeat.",
|
|
|
|
}, []string{"type"})
|
|
|
|
|
2022-06-10 10:30:40 +00:00
|
|
|
MasterReplicaPlacementMismatch = prometheus.NewGaugeVec(
|
|
|
|
prometheus.GaugeOpts{
|
|
|
|
Namespace: "SeaweedFS",
|
|
|
|
Subsystem: "master",
|
|
|
|
Name: "replica_placement_mismatch",
|
|
|
|
Help: "replica placement mismatch",
|
|
|
|
}, []string{"collection", "id"})
|
|
|
|
|
2022-01-24 14:09:43 +00:00
|
|
|
MasterLeaderChangeCounter = prometheus.NewCounterVec(
|
|
|
|
prometheus.CounterOpts{
|
|
|
|
Namespace: "SeaweedFS",
|
|
|
|
Subsystem: "master",
|
2022-01-25 09:42:47 +00:00
|
|
|
Name: "leader_changes",
|
2022-01-24 14:09:43 +00:00
|
|
|
Help: "Counter of master leader changes.",
|
|
|
|
}, []string{"type"})
|
|
|
|
|
2019-06-15 19:21:44 +00:00
|
|
|
FilerRequestCounter = prometheus.NewCounterVec(
|
2019-06-13 09:01:51 +00:00
|
|
|
prometheus.CounterOpts{
|
|
|
|
Namespace: "SeaweedFS",
|
|
|
|
Subsystem: "filer",
|
|
|
|
Name: "request_total",
|
|
|
|
Help: "Counter of filer requests.",
|
|
|
|
}, []string{"type"})
|
|
|
|
|
2019-06-15 19:21:44 +00:00
|
|
|
FilerRequestHistogram = prometheus.NewHistogramVec(
|
2019-06-13 09:01:51 +00:00
|
|
|
prometheus.HistogramOpts{
|
|
|
|
Namespace: "SeaweedFS",
|
|
|
|
Subsystem: "filer",
|
|
|
|
Name: "request_seconds",
|
|
|
|
Help: "Bucketed histogram of filer request processing time.",
|
2019-06-14 07:54:56 +00:00
|
|
|
Buckets: prometheus.ExponentialBuckets(0.0001, 2, 24),
|
|
|
|
}, []string{"type"})
|
|
|
|
|
2022-06-15 03:33:18 +00:00
|
|
|
FilerServerLastSendTsOfSubscribeGauge = prometheus.NewGaugeVec(
|
|
|
|
prometheus.GaugeOpts{
|
|
|
|
Namespace: "SeaweedFS",
|
|
|
|
Subsystem: "filer",
|
|
|
|
Name: "last_send_timestamp_of_subscribe",
|
|
|
|
Help: "The last send timestamp of the filer subscription.",
|
|
|
|
}, []string{"sourceFiler", "clientName", "path"})
|
|
|
|
|
2019-06-22 19:23:25 +00:00
|
|
|
FilerStoreCounter = prometheus.NewCounterVec(
|
|
|
|
prometheus.CounterOpts{
|
|
|
|
Namespace: "SeaweedFS",
|
|
|
|
Subsystem: "filerStore",
|
|
|
|
Name: "request_total",
|
|
|
|
Help: "Counter of filer store requests.",
|
|
|
|
}, []string{"store", "type"})
|
|
|
|
|
|
|
|
FilerStoreHistogram = prometheus.NewHistogramVec(
|
|
|
|
prometheus.HistogramOpts{
|
|
|
|
Namespace: "SeaweedFS",
|
|
|
|
Subsystem: "filerStore",
|
|
|
|
Name: "request_seconds",
|
|
|
|
Help: "Bucketed histogram of filer store request processing time.",
|
|
|
|
Buckets: prometheus.ExponentialBuckets(0.0001, 2, 24),
|
|
|
|
}, []string{"store", "type"})
|
|
|
|
|
2022-06-15 03:33:18 +00:00
|
|
|
FilerSyncOffsetGauge = prometheus.NewGaugeVec(
|
|
|
|
prometheus.GaugeOpts{
|
|
|
|
Namespace: "SeaweedFS",
|
|
|
|
Subsystem: "filerSync",
|
|
|
|
Name: "sync_offset",
|
|
|
|
Help: "The offset of the filer synchronization service.",
|
|
|
|
}, []string{"sourceFiler", "targetFiler", "clientName", "path"})
|
|
|
|
|
2019-06-15 19:21:44 +00:00
|
|
|
VolumeServerRequestCounter = prometheus.NewCounterVec(
|
2019-06-14 07:54:56 +00:00
|
|
|
prometheus.CounterOpts{
|
|
|
|
Namespace: "SeaweedFS",
|
|
|
|
Subsystem: "volumeServer",
|
|
|
|
Name: "request_total",
|
2019-06-24 07:26:03 +00:00
|
|
|
Help: "Counter of volume server requests.",
|
2019-06-14 07:54:56 +00:00
|
|
|
}, []string{"type"})
|
|
|
|
|
2019-06-15 19:21:44 +00:00
|
|
|
VolumeServerRequestHistogram = prometheus.NewHistogramVec(
|
2019-06-14 07:54:56 +00:00
|
|
|
prometheus.HistogramOpts{
|
|
|
|
Namespace: "SeaweedFS",
|
|
|
|
Subsystem: "volumeServer",
|
|
|
|
Name: "request_seconds",
|
2019-06-24 07:26:03 +00:00
|
|
|
Help: "Bucketed histogram of volume server request processing time.",
|
2019-06-14 07:54:56 +00:00
|
|
|
Buckets: prometheus.ExponentialBuckets(0.0001, 2, 24),
|
2019-06-13 09:01:51 +00:00
|
|
|
}, []string{"type"})
|
2019-06-14 20:06:01 +00:00
|
|
|
|
2019-06-18 04:02:50 +00:00
|
|
|
VolumeServerVolumeCounter = prometheus.NewGaugeVec(
|
2019-06-14 20:06:01 +00:00
|
|
|
prometheus.GaugeOpts{
|
|
|
|
Namespace: "SeaweedFS",
|
|
|
|
Subsystem: "volumeServer",
|
|
|
|
Name: "volumes",
|
2019-06-18 04:02:50 +00:00
|
|
|
Help: "Number of volumes or shards.",
|
|
|
|
}, []string{"collection", "type"})
|
2019-06-16 09:24:15 +00:00
|
|
|
|
2020-10-15 10:32:02 +00:00
|
|
|
VolumeServerReadOnlyVolumeGauge = prometheus.NewGaugeVec(
|
|
|
|
prometheus.GaugeOpts{
|
|
|
|
Namespace: "SeaweedFS",
|
|
|
|
Subsystem: "volumeServer",
|
|
|
|
Name: "read_only_volumes",
|
|
|
|
Help: "Number of read only volumes.",
|
|
|
|
}, []string{"collection", "type"})
|
|
|
|
|
2019-06-18 04:02:50 +00:00
|
|
|
VolumeServerMaxVolumeCounter = prometheus.NewGauge(
|
2019-06-16 09:24:15 +00:00
|
|
|
prometheus.GaugeOpts{
|
|
|
|
Namespace: "SeaweedFS",
|
|
|
|
Subsystem: "volumeServer",
|
2019-06-20 16:56:49 +00:00
|
|
|
Name: "max_volumes",
|
2019-06-18 04:02:50 +00:00
|
|
|
Help: "Maximum number of volumes.",
|
2019-06-16 09:24:15 +00:00
|
|
|
})
|
2019-06-17 04:56:41 +00:00
|
|
|
|
|
|
|
VolumeServerDiskSizeGauge = prometheus.NewGaugeVec(
|
2019-06-16 09:44:20 +00:00
|
|
|
prometheus.GaugeOpts{
|
|
|
|
Namespace: "SeaweedFS",
|
|
|
|
Subsystem: "volumeServer",
|
2019-06-17 04:56:41 +00:00
|
|
|
Name: "total_disk_size",
|
2019-06-16 09:44:20 +00:00
|
|
|
Help: "Actual disk size used by volumes.",
|
2019-06-17 04:56:41 +00:00
|
|
|
}, []string{"collection", "type"})
|
2020-09-18 07:09:04 +00:00
|
|
|
|
2020-10-22 16:13:47 +00:00
|
|
|
VolumeServerResourceGauge = prometheus.NewGaugeVec(
|
|
|
|
prometheus.GaugeOpts{
|
|
|
|
Namespace: "SeaweedFS",
|
|
|
|
Subsystem: "volumeServer",
|
|
|
|
Name: "resource",
|
|
|
|
Help: "Resource usage",
|
|
|
|
}, []string{"name", "type"})
|
|
|
|
|
2020-09-18 07:09:04 +00:00
|
|
|
S3RequestCounter = prometheus.NewCounterVec(
|
|
|
|
prometheus.CounterOpts{
|
|
|
|
Namespace: "SeaweedFS",
|
|
|
|
Subsystem: "s3",
|
|
|
|
Name: "request_total",
|
|
|
|
Help: "Counter of s3 requests.",
|
2022-06-16 05:21:25 +00:00
|
|
|
}, []string{"type", "code", "bucket"})
|
|
|
|
|
2020-09-18 07:09:04 +00:00
|
|
|
S3RequestHistogram = prometheus.NewHistogramVec(
|
|
|
|
prometheus.HistogramOpts{
|
|
|
|
Namespace: "SeaweedFS",
|
|
|
|
Subsystem: "s3",
|
|
|
|
Name: "request_seconds",
|
|
|
|
Help: "Bucketed histogram of s3 request processing time.",
|
|
|
|
Buckets: prometheus.ExponentialBuckets(0.0001, 2, 24),
|
2022-06-16 05:21:25 +00:00
|
|
|
}, []string{"type", "bucket"})
|
2019-06-13 09:01:51 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2022-01-24 15:13:07 +00:00
|
|
|
Gather.MustRegister(MasterClientConnectCounter)
|
|
|
|
Gather.MustRegister(MasterRaftIsleader)
|
|
|
|
Gather.MustRegister(MasterReceivedHeartbeatCounter)
|
|
|
|
Gather.MustRegister(MasterLeaderChangeCounter)
|
2022-06-10 10:30:40 +00:00
|
|
|
Gather.MustRegister(MasterReplicaPlacementMismatch)
|
2022-01-24 15:13:07 +00:00
|
|
|
|
2020-09-24 17:21:23 +00:00
|
|
|
Gather.MustRegister(FilerRequestCounter)
|
|
|
|
Gather.MustRegister(FilerRequestHistogram)
|
|
|
|
Gather.MustRegister(FilerStoreCounter)
|
|
|
|
Gather.MustRegister(FilerStoreHistogram)
|
2022-06-15 03:33:18 +00:00
|
|
|
Gather.MustRegister(FilerSyncOffsetGauge)
|
|
|
|
Gather.MustRegister(FilerServerLastSendTsOfSubscribeGauge)
|
2021-06-22 07:54:13 +00:00
|
|
|
Gather.MustRegister(collectors.NewGoCollector())
|
|
|
|
Gather.MustRegister(collectors.NewProcessCollector(collectors.ProcessCollectorOpts{}))
|
2019-06-14 07:54:56 +00:00
|
|
|
|
2020-09-24 17:21:23 +00:00
|
|
|
Gather.MustRegister(VolumeServerRequestCounter)
|
|
|
|
Gather.MustRegister(VolumeServerRequestHistogram)
|
|
|
|
Gather.MustRegister(VolumeServerVolumeCounter)
|
|
|
|
Gather.MustRegister(VolumeServerMaxVolumeCounter)
|
2020-10-15 10:32:02 +00:00
|
|
|
Gather.MustRegister(VolumeServerReadOnlyVolumeGauge)
|
2020-09-24 17:21:23 +00:00
|
|
|
Gather.MustRegister(VolumeServerDiskSizeGauge)
|
2020-10-22 16:13:47 +00:00
|
|
|
Gather.MustRegister(VolumeServerResourceGauge)
|
2019-06-14 20:06:01 +00:00
|
|
|
|
2020-09-24 17:21:23 +00:00
|
|
|
Gather.MustRegister(S3RequestCounter)
|
|
|
|
Gather.MustRegister(S3RequestHistogram)
|
2019-06-14 20:06:01 +00:00
|
|
|
}
|
|
|
|
|
2020-09-24 17:21:23 +00:00
|
|
|
func LoopPushingMetric(name, instance, addr string, intervalSeconds int) {
|
2020-09-16 08:39:30 +00:00
|
|
|
if addr == "" || intervalSeconds == 0 {
|
2019-06-23 22:29:49 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-09-20 22:38:59 +00:00
|
|
|
glog.V(0).Infof("%s server sends metrics to %s every %d seconds", name, addr, intervalSeconds)
|
|
|
|
|
2020-09-24 17:21:23 +00:00
|
|
|
pusher := push.New(addr, name).Gatherer(Gather).Grouping("instance", instance)
|
2019-06-14 07:54:56 +00:00
|
|
|
|
2019-06-14 20:06:01 +00:00
|
|
|
for {
|
2020-09-16 08:39:30 +00:00
|
|
|
err := pusher.Push()
|
|
|
|
if err != nil && !strings.HasPrefix(err.Error(), "unexpected status code 200") {
|
|
|
|
glog.V(0).Infof("could not push metrics to prometheus push gateway %s: %v", addr, err)
|
2019-06-17 21:51:47 +00:00
|
|
|
}
|
|
|
|
if intervalSeconds <= 0 {
|
|
|
|
intervalSeconds = 15
|
2019-06-14 20:06:01 +00:00
|
|
|
}
|
|
|
|
time.Sleep(time.Duration(intervalSeconds) * time.Second)
|
|
|
|
}
|
2019-06-13 09:01:51 +00:00
|
|
|
}
|
2019-06-16 04:46:55 +00:00
|
|
|
|
2020-09-24 17:21:23 +00:00
|
|
|
func StartMetricsServer(port int) {
|
2020-09-24 12:45:39 +00:00
|
|
|
if port == 0 {
|
|
|
|
return
|
|
|
|
}
|
2020-09-24 17:21:23 +00:00
|
|
|
http.Handle("/metrics", promhttp.HandlerFor(Gather, promhttp.HandlerOpts{}))
|
2020-09-24 12:45:39 +00:00
|
|
|
log.Fatal(http.ListenAndServe(fmt.Sprintf(":%d", port), nil))
|
|
|
|
}
|
|
|
|
|
2020-03-02 06:13:47 +00:00
|
|
|
func SourceName(port uint32) string {
|
2019-06-16 04:46:55 +00:00
|
|
|
hostname, err := os.Hostname()
|
|
|
|
if err != nil {
|
|
|
|
return "unknown"
|
|
|
|
}
|
2021-09-07 23:43:54 +00:00
|
|
|
return net.JoinHostPort(hostname, strconv.Itoa(int(port)))
|
2019-06-16 04:46:55 +00:00
|
|
|
}
|
2022-07-27 11:31:49 +00:00
|
|
|
|
2022-07-27 11:48:56 +00:00
|
|
|
// todo - can be changed to DeletePartialMatch when https://github.com/prometheus/client_golang/pull/1013 gets released
|
2022-07-27 11:31:49 +00:00
|
|
|
func DeleteCollectionMetrics(collection string) {
|
|
|
|
VolumeServerDiskSizeGauge.DeleteLabelValues(collection, "normal")
|
|
|
|
for _, volume_type := range readOnlyVolumeTypes {
|
|
|
|
VolumeServerReadOnlyVolumeGauge.DeleteLabelValues(collection, volume_type)
|
|
|
|
}
|
|
|
|
VolumeServerVolumeCounter.DeleteLabelValues(collection, "volume")
|
|
|
|
}
|