Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type LogItem ¶
type LogItem struct { ID string `bson:"_id"` // id Level string `bson:"level"` // 日志级别 Message string `bson:"message"` // 消息 TraceID string `bson:"trace_id"` // 跟踪ID UserID string `bson:"user_id"` // 用户ID SpanTitle string `bson:"span_title"` // 跟踪单元标题 SpanFunction string `bson:"span_function"` // 跟踪单元函数名 Data string `bson:"data"` // 日志数据(json) Version string `bson:"version"` // 服务版本号 CreatedAt time.Time `bson:"created_at"` // 创建时间 }
LogItem 存储日志项
Click to show internal directories.
Click to hide internal directories.