mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
32 lines
1 KiB
Go
32 lines
1 KiB
Go
|
package stats
|
||
|
|
||
|
// This file contains metric names for all errors
|
||
|
// The naming convention is ErrorSomeThing = "error.some.thing"
|
||
|
const (
|
||
|
// volume server
|
||
|
ErrorSizeMismatchOffsetSize = "errorSizeMismatchOffsetSize"
|
||
|
ErrorSizeMismatch = "errorSizeMismatch"
|
||
|
ErrorCRC = "errorCRC"
|
||
|
ErrorIndexOutOfRange = "errorIndexOutOfRange"
|
||
|
|
||
|
// master topology
|
||
|
ErrorWriteToLocalDisk = "errorWriteToLocalDisk"
|
||
|
ErrorUnmarshalPairs = "errorUnmarshalPairs"
|
||
|
ErrorWriteToReplicas = "errorWriteToReplicas"
|
||
|
|
||
|
// master client
|
||
|
FailedToKeepConnected = "failedToKeepConnected"
|
||
|
FailedToSend = "failedToSend"
|
||
|
FailedToReceive = "failedToReceive"
|
||
|
RedirectedToleader = "redirectedToleader"
|
||
|
OnPeerUpdate = "onPeerUpdate"
|
||
|
Failed = "failed"
|
||
|
|
||
|
// filer handler
|
||
|
ErrorReadNotFound = "read.notfound"
|
||
|
ErrorReadInternal = "read.internalerror"
|
||
|
ErrorWriteEntry = "write.entry.failed"
|
||
|
ErrorReadCache = "read.cache.failed"
|
||
|
ErrorReadStream = "read.stream.failed"
|
||
|
)
|