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.go36
1 files changed, 36 insertions, 0 deletions
diff --git a/weed/stats/metrics.go b/weed/stats/metrics.go
index 26164ffc3..2723e253f 100644
--- a/weed/stats/metrics.go
+++ b/weed/stats/metrics.go
@@ -278,6 +278,38 @@ var (
Help: "Resource usage",
}, []string{"name", "type"})
+ VolumeServerConcurrentDownloadLimit = prometheus.NewGauge(
+ prometheus.GaugeOpts{
+ Namespace: Namespace,
+ Subsystem: "volumeServer",
+ Name: "concurrent_download_limit",
+ Help: "Limit total concurrent download size.",
+ })
+
+ VolumeServerConcurrentUploadLimit = prometheus.NewGauge(
+ prometheus.GaugeOpts{
+ Namespace: Namespace,
+ Subsystem: "volumeServer",
+ Name: "concurrent_upload_limit",
+ Help: "Limit total concurrent upload size.",
+ })
+
+ VolumeServerInFlightDownloadSize = prometheus.NewGauge(
+ prometheus.GaugeOpts{
+ Namespace: Namespace,
+ Subsystem: "volumeServer",
+ Name: "in_flight_download_size",
+ Help: "In flight total download size.",
+ })
+
+ VolumeServerInFlightUploadSize = prometheus.NewGauge(
+ prometheus.GaugeOpts{
+ Namespace: Namespace,
+ Subsystem: "volumeServer",
+ Name: "in_flight_upload_size",
+ Help: "In flight total upload size.",
+ })
+
S3RequestCounter = prometheus.NewCounterVec(
prometheus.CounterOpts{
Namespace: Namespace,
@@ -387,6 +419,10 @@ func init() {
Gather.MustRegister(VolumeServerReadOnlyVolumeGauge)
Gather.MustRegister(VolumeServerDiskSizeGauge)
Gather.MustRegister(VolumeServerResourceGauge)
+ Gather.MustRegister(VolumeServerConcurrentDownloadLimit)
+ Gather.MustRegister(VolumeServerConcurrentUploadLimit)
+ Gather.MustRegister(VolumeServerInFlightDownloadSize)
+ Gather.MustRegister(VolumeServerInFlightUploadSize)
Gather.MustRegister(S3RequestCounter)
Gather.MustRegister(S3HandlerCounter)