15 lines
265 B
Go
15 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"
|
|
)
|