aboutsummaryrefslogtreecommitdiff
path: root/weed/stats/metrics.go
diff options
context:
space:
mode:
authorchrislu <chris.lu@gmail.com>2023-10-03 08:28:52 -0700
committerchrislu <chris.lu@gmail.com>2023-10-03 08:28:52 -0700
commit6ebe26a76541270a3c403e67e49beeca9a9aad58 (patch)
tree13339ea2cc50ba9a5ccf904e8511a0ae27a692e7 /weed/stats/metrics.go
parent7540d43ee93564c41537dbed09929744a68fb7d7 (diff)
downloadseaweedfs-6ebe26a76541270a3c403e67e49beeca9a9aad58.tar.xz
seaweedfs-6ebe26a76541270a3c403e67e49beeca9a9aad58.zip
Revert "Revert "Revert "Add disk type to prometheus metrics" (#4777)""
This reverts commit 567d78892860f87c207beb56a3323b4b9e90dfc9.
Diffstat (limited to 'weed/stats/metrics.go')
-rw-r--r--weed/stats/metrics.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/weed/stats/metrics.go b/weed/stats/metrics.go
index af4f26e4c..3dda42423 100644
--- a/weed/stats/metrics.go
+++ b/weed/stats/metrics.go
@@ -176,7 +176,7 @@ var (
Subsystem: "volumeServer",
Name: "volumes",
Help: "Number of volumes or shards.",
- }, []string{"collection", "type", "disk"})
+ }, []string{"collection", "type"})
VolumeServerReadOnlyVolumeGauge = prometheus.NewGaugeVec(
prometheus.GaugeOpts{
@@ -315,10 +315,11 @@ func SourceName(port uint32) string {
return net.JoinHostPort(hostname, strconv.Itoa(int(port)))
}
+// todo - can be changed to DeletePartialMatch when https://github.com/prometheus/client_golang/pull/1013 gets released
func DeleteCollectionMetrics(collection string) {
VolumeServerDiskSizeGauge.DeleteLabelValues(collection, "normal")
for _, volume_type := range readOnlyVolumeTypes {
- VolumeServerReadOnlyVolumeGauge.DeletePartialMatch(prometheus.Labels{"collection": collection, "type": volume_type})
+ VolumeServerReadOnlyVolumeGauge.DeleteLabelValues(collection, volume_type)
}
- VolumeServerVolumeCounter.DeletePartialMatch(prometheus.Labels{"collection": collection, "type": "volume"})
+ VolumeServerVolumeCounter.DeleteLabelValues(collection, "volume")
}