forked from TrueCloudLab/frostfs-node
16 lines
265 B
Go
16 lines
265 B
Go
|
package metrics
|
||
|
|
||
|
const (
|
||
|
fstreeSubSystem = "fstree"
|
||
|
|
||
|
successLabel = "success"
|
||
|
shardIDLabel = "shardID"
|
||
|
modeLabel = "mode"
|
||
|
pathLabel = "path"
|
||
|
methodLabel = "method"
|
||
|
|
||
|
readWriteMode = "READ_WRITE"
|
||
|
readOnlyMode = "READ_ONLY"
|
||
|
closedMode = "CLOSED"
|
||
|
)
|