aboutsummaryrefslogtreecommitdiff
path: root/weed/stats/metrics.go
diff options
context:
space:
mode:
Diffstat (limited to 'weed/stats/metrics.go')
-rw-r--r--weed/stats/metrics.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/weed/stats/metrics.go b/weed/stats/metrics.go
index fccf64d19..2408b607a 100644
--- a/weed/stats/metrics.go
+++ b/weed/stats/metrics.go
@@ -63,6 +63,20 @@ var (
Name: "ecShards",
Help: "Number of EC shards.",
})
+ VolumeServerVolumeSizeGauge = prometheus.NewGauge(
+ prometheus.GaugeOpts{
+ Namespace: "SeaweedFS",
+ Subsystem: "volumeServer",
+ Name: "totalVolumeSize",
+ Help: "Actual disk size used by volumes.",
+ })
+ VolumeServerEcShardSizeGauge = prometheus.NewGauge(
+ prometheus.GaugeOpts{
+ Namespace: "SeaweedFS",
+ Subsystem: "volumeServer",
+ Name: "totalEcShardSize",
+ Help: "Actual disk size used by ec shards.",
+ })
)
func init() {
@@ -74,6 +88,8 @@ func init() {
VolumeServerGather.MustRegister(VolumeServerRequestHistogram)
VolumeServerGather.MustRegister(VolumeServerVolumeCounter)
VolumeServerGather.MustRegister(VolumeServerEcShardCounter)
+ VolumeServerGather.MustRegister(VolumeServerVolumeSizeGauge)
+ VolumeServerGather.MustRegister(VolumeServerEcShardSizeGauge)
}