frostfs-node/pkg/metrics/consts.go
Dmitrii Stepanov 56f320dd85 [#373] metrics: Add blobstor metrics
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
2023-06-21 15:13:26 +03:00

17 lines
370 B
Go

package metrics
const (
fstreeSubSystem = "fstree"
blobstoreSubSystem = "blobstore"
successLabel = "success"
shardIDLabel = "shardID"
modeLabel = "mode"
pathLabel = "path"
methodLabel = "method"
withStorageIDLabel = "withStorageID"
readWriteMode = "READ_WRITE"
readOnlyMode = "READ_ONLY"
closedMode = "CLOSED"
)