diff options
| author | chrislu <chris.lu@gmail.com> | 2023-10-02 11:49:54 -0700 |
|---|---|---|
| committer | chrislu <chris.lu@gmail.com> | 2023-10-02 11:49:54 -0700 |
| commit | 567d78892860f87c207beb56a3323b4b9e90dfc9 (patch) | |
| tree | 31aab3a8507dcd022b1ef818417a4896cad482f6 /weed/storage/erasure_coding/ec_shard.go | |
| parent | b5070d6280babf7868e7940306a04f4f5f9579c3 (diff) | |
| download | seaweedfs-567d78892860f87c207beb56a3323b4b9e90dfc9.tar.xz seaweedfs-567d78892860f87c207beb56a3323b4b9e90dfc9.zip | |
Revert "Revert "Add disk type to prometheus metrics" (#4777)"
This reverts commit 9215ba24be0aec0c5804927cc73613560e57cbc0.
Diffstat (limited to 'weed/storage/erasure_coding/ec_shard.go')
| -rw-r--r-- | weed/storage/erasure_coding/ec_shard.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/weed/storage/erasure_coding/ec_shard.go b/weed/storage/erasure_coding/ec_shard.go index 19ee17636..85694e63b 100644 --- a/weed/storage/erasure_coding/ec_shard.go +++ b/weed/storage/erasure_coding/ec_shard.go @@ -7,6 +7,8 @@ import ( "strconv" "strings" + "github.com/seaweedfs/seaweedfs/weed/storage/types" + "github.com/seaweedfs/seaweedfs/weed/stats" "github.com/seaweedfs/seaweedfs/weed/storage/needle" "github.com/seaweedfs/seaweedfs/weed/storage/types" @@ -44,7 +46,7 @@ func NewEcVolumeShard(diskType types.DiskType, dirname string, collection string } v.ecdFileSize = ecdFi.Size() - stats.VolumeServerVolumeCounter.WithLabelValues(v.Collection, "ec_shards").Inc() + stats.VolumeServerVolumeCounter.WithLabelValues(v.Collection, "ec_shards", string(v.DiskType)).Inc() return } @@ -88,7 +90,7 @@ func (shard *EcVolumeShard) Close() { func (shard *EcVolumeShard) Destroy() { os.Remove(shard.FileName() + ToExt(int(shard.ShardId))) - stats.VolumeServerVolumeCounter.WithLabelValues(shard.Collection, "ec_shards").Dec() + stats.VolumeServerVolumeCounter.WithLabelValues(shard.Collection, "ec_shards", string(shard.DiskType)).Dec() } func (shard *EcVolumeShard) ReadAt(buf []byte, offset int64) (int, error) { |
