forked from TrueCloudLab/frostfs-node
18 lines
425 B
Go
18 lines
425 B
Go
package metrics
|
|
|
|
const (
|
|
fstreeSubSystem = "fstree"
|
|
blobstoreSubSystem = "blobstore"
|
|
blobovnizaTreeSubSystem = "blobovniza_tree"
|
|
|
|
successLabel = "success"
|
|
shardIDLabel = "shardID"
|
|
modeLabel = "mode"
|
|
pathLabel = "path"
|
|
methodLabel = "method"
|
|
withStorageIDLabel = "withStorageID"
|
|
|
|
readWriteMode = "READ_WRITE"
|
|
readOnlyMode = "READ_ONLY"
|
|
closedMode = "CLOSED"
|
|
)
|