Files
wehub-resource-sync 498b235461
Build and test / Build and test AMD64 Ubuntu 22.04 (push) Failing after 0s
Publish Builder / amazonlinux2023 (push) Failing after 1s
Build and test / UT for Go (push) Has been skipped
Publish KRTE Images / KRTE (push) Failing after 1s
Build and test / Integration Test (push) Has been skipped
Build and test / Upload Code Coverage (push) Has been skipped
Publish Builder / rockylinux9 (push) Failing after 1s
Publish Builder / ubuntu22.04 (push) Failing after 0s
Publish Builder / ubuntu24.04 (push) Failing after 0s
Publish Gpu Builder / publish-gpu-builder (push) Failing after 1s
Publish Test Images / PyTest (push) Failing after 0s
Build and test / UT for Cpp (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:31:17 +08:00

241 lines
6.9 KiB
Go

package mlog
import (
"go.uber.org/zap"
"go.uber.org/zap/zapcore"
)
// Well-known field keys for consistent logging across Milvus components.
// All keys use camelCase in logs. gRPC metadata propagation lowercases these
// keys on the wire and restores them through wellKnownLowerKeyToLogKey.
const (
keyNodeID = "nodeID"
keyModule = "module"
keyComponent = "component"
keyTraceID = "traceID"
keySpanID = "spanID"
keyDbID = "dbID"
keyDbName = "dbName"
keyCollectionID = "collectionID"
keyCollectionName = "collectionName"
keyPartitionID = "partitionID"
keyPartitionName = "partitionName"
keySegmentID = "segmentID"
keyIndexID = "indexID"
keyFieldID = "fieldID"
keyTaskID = "taskID"
keyBroadcastID = "broadcastID"
keyJobID = "jobID"
keyBuildID = "buildID"
keyVChannel = "vchannel"
keyPChannel = "pchannel"
keyMessageID = "messageID"
keyMessage = "message"
)
var wellKnownLowerKeyToLogKey = map[string]string{
"nodeid": keyNodeID,
"module": keyModule,
"component": keyComponent,
"traceid": keyTraceID,
"spanid": keySpanID,
"dbid": keyDbID,
"dbname": keyDbName,
"collectionid": keyCollectionID,
"collectionname": keyCollectionName,
"partitionid": keyPartitionID,
"partitionname": keyPartitionName,
"segmentid": keySegmentID,
"indexid": keyIndexID,
"fieldid": keyFieldID,
"taskid": keyTaskID,
"broadcastid": keyBroadcastID,
"jobid": keyJobID,
"buildid": keyBuildID,
"vchannel": keyVChannel,
"pchannel": keyPChannel,
"messageid": keyMessageID,
"message": keyMessage,
}
func restoreWellKnownLogKey(key string) string {
if logKey, ok := wellKnownLowerKeyToLogKey[key]; ok {
return logKey
}
return key
}
const (
FieldNameModule = keyModule
FieldNameComponent = keyComponent
)
// FieldOption configures optional behavior for well-known field constructors.
type FieldOption struct {
propagated bool
}
// OptPropagated returns a FieldOption that marks the field for RPC propagation.
// When applied, the field will be transmitted via gRPC metadata across service boundaries.
func OptPropagated() FieldOption {
return FieldOption{propagated: true}
}
func hasPropagated(opts []FieldOption) bool {
for _, opt := range opts {
if opt.propagated {
return true
}
}
return false
}
// Well-known field constructors for consistent logging across Milvus components.
// These functions provide type-safe field creation with predefined keys.
// FieldNodeID creates a field for node ID.
func FieldNodeID(val int64) Field { return Int64(keyNodeID, val) }
// FieldModule creates a field for module name.
func FieldModule(val string) Field { return String(keyModule, val) }
// FieldComponent creates a field for component name.
func FieldComponent(val string) Field { return String(keyComponent, val) }
// FieldTraceID creates a field for trace ID.
func FieldTraceID(val string) Field { return String(keyTraceID, val) }
// FieldSpanID creates a field for span ID.
func FieldSpanID(val string) Field { return String(keySpanID, val) }
// FieldDbID creates a field for database ID.
func FieldDbID(val int64, opts ...FieldOption) Field {
if hasPropagated(opts) {
return propagatedInt64Field(keyDbID, val)
}
return Int64(keyDbID, val)
}
// FieldDbName creates a field for database name.
func FieldDbName(val string, opts ...FieldOption) Field {
if hasPropagated(opts) {
return propagatedStringField(keyDbName, val)
}
return String(keyDbName, val)
}
// FieldCollectionID creates a field for collection ID.
func FieldCollectionID(val int64, opts ...FieldOption) Field {
if hasPropagated(opts) {
return propagatedInt64Field(keyCollectionID, val)
}
return Int64(keyCollectionID, val)
}
// FieldCollectionName creates a field for collection name.
func FieldCollectionName(val string, opts ...FieldOption) Field {
if hasPropagated(opts) {
return propagatedStringField(keyCollectionName, val)
}
return String(keyCollectionName, val)
}
// FieldPartitionID creates a field for partition ID.
func FieldPartitionID(val int64, opts ...FieldOption) Field {
if hasPropagated(opts) {
return propagatedInt64Field(keyPartitionID, val)
}
return Int64(keyPartitionID, val)
}
// FieldPartitionName creates a field for partition name.
func FieldPartitionName(val string, opts ...FieldOption) Field {
if hasPropagated(opts) {
return propagatedStringField(keyPartitionName, val)
}
return String(keyPartitionName, val)
}
// FieldSegmentID creates a field for segment ID.
func FieldSegmentID(val int64, opts ...FieldOption) Field {
if hasPropagated(opts) {
return propagatedInt64Field(keySegmentID, val)
}
return Int64(keySegmentID, val)
}
// FieldIndexID creates a field for index ID.
func FieldIndexID(val int64, opts ...FieldOption) Field {
if hasPropagated(opts) {
return propagatedInt64Field(keyIndexID, val)
}
return Int64(keyIndexID, val)
}
// FieldFieldID creates a field for field ID.
func FieldFieldID(val int64, opts ...FieldOption) Field {
if hasPropagated(opts) {
return propagatedInt64Field(keyFieldID, val)
}
return Int64(keyFieldID, val)
}
// FieldTaskID creates a field for task ID.
func FieldTaskID(val int64, opts ...FieldOption) Field {
if hasPropagated(opts) {
return propagatedInt64Field(keyTaskID, val)
}
return Int64(keyTaskID, val)
}
// FieldBroadcastID creates a field for broadcast ID.
func FieldBroadcastID(val int64, opts ...FieldOption) Field {
if hasPropagated(opts) {
return propagatedInt64Field(keyBroadcastID, val)
}
return Int64(keyBroadcastID, val)
}
// FieldJobID creates a field for job ID.
func FieldJobID(val int64, opts ...FieldOption) Field {
if hasPropagated(opts) {
return propagatedInt64Field(keyJobID, val)
}
return Int64(keyJobID, val)
}
// FieldBuildID creates a field for build ID.
func FieldBuildID(val int64, opts ...FieldOption) Field {
if hasPropagated(opts) {
return propagatedInt64Field(keyBuildID, val)
}
return Int64(keyBuildID, val)
}
// FieldVChannel creates a field for virtual channel name.
func FieldVChannel(val string, opts ...FieldOption) Field {
if hasPropagated(opts) {
return propagatedStringField(keyVChannel, val)
}
return String(keyVChannel, val)
}
// FieldPChannel creates a field for physical channel name.
func FieldPChannel(val string, opts ...FieldOption) Field {
if hasPropagated(opts) {
return propagatedStringField(keyPChannel, val)
}
return String(keyPChannel, val)
}
// FieldMessageID creates a field for message ID.
func FieldMessageID(val zapcore.ObjectMarshaler) Field { return Object(keyMessageID, val) }
// FieldMessage creates a field for message content.
func FieldMessage(val zapcore.ObjectMarshaler) Field { return Object(keyMessage, val) }
// FieldMessages creates an array field for message contents.
func FieldMessages[T zapcore.ObjectMarshaler](msgs []T) Field {
return zap.Objects("messages", msgs)
}