mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
22181dd018
* refactor FilerRequest metrics * avoid double count proxy * defer to
44 lines
1.6 KiB
Go
44 lines
1.6 KiB
Go
package stats
|
|
|
|
// This file contains metric names for all errors
|
|
// The naming convention is ErrorSomeThing = "error.some.thing"
|
|
const (
|
|
// volume server
|
|
WriteToLocalDisk = "writeToLocalDisk"
|
|
WriteToReplicas = "writeToReplicas"
|
|
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
|
|
DirList = "dirList"
|
|
ContentSaveToFiler = "contentSaveToFiler"
|
|
AutoChunk = "autoChunk"
|
|
ChunkProxy = "chunkProxy"
|
|
ChunkAssign = "chunkAssign"
|
|
ChunkUpload = "chunkUpload"
|
|
ChunkDoUploadRetry = "chunkDoUploadRetry"
|
|
ChunkUploadRetry = "chunkUploadRetry"
|
|
ChunkAssignRetry = "chunkAssignRetry"
|
|
ErrorReadNotFound = "read.notfound"
|
|
ErrorReadInternal = "read.internal.error"
|
|
ErrorWriteEntry = "write.entry.failed"
|
|
RepeatErrorUploadContent = "upload.content.repeat.failed"
|
|
ErrorReadCache = "read.cache.failed"
|
|
ErrorReadStream = "read.stream.failed"
|
|
)
|