[#373] metrics: Add blobstor metrics

Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
This commit is contained in:
Dmitrii Stepanov 2023-06-07 18:04:23 +03:00
parent 16a142cd0c
commit 56f320dd85
7 changed files with 198 additions and 42 deletions

View file

@ -1,13 +1,15 @@
package metrics
const (
fstreeSubSystem = "fstree"
fstreeSubSystem = "fstree"
blobstoreSubSystem = "blobstore"
successLabel = "success"
shardIDLabel = "shardID"
modeLabel = "mode"
pathLabel = "path"
methodLabel = "method"
successLabel = "success"
shardIDLabel = "shardID"
modeLabel = "mode"
pathLabel = "path"
methodLabel = "method"
withStorageIDLabel = "withStorageID"
readWriteMode = "READ_WRITE"
readOnlyMode = "READ_ONLY"