Documentation ¶
Overview ¶
日志记录模块
Index ¶
- func AE(msg string, err error) error
- func Alert(msg string, err error)
- func AlertError(msg string, err error) error
- func CE(msg string, err error) error
- func Crit(msg string, err error)
- func CritError(msg string, err error) error
- func DE(msg string, err error) error
- func Debug(msg string, err error)
- func DebugError(msg string, err error) error
- func EE(msg string, err error) error
- func Error(msg string, err error)
- func ErrorError(msg string, err error) error
- func Ftime(t time.Time)
- func GetLogTypeBigs(typ string, big bool) []string
- func IE(msg string, err error) error
- func Info(msg string, err error)
- func InfoError(msg string, err error) error
- func LogMigration()deprecated
- func NE(msg string) error
- func NN(msg string) error
- func Notice(msg string)
- func NoticeError(msg string) error
- func PE(msg string, err error) error
- func Panic(msg string, err error)
- func PanicError(msg string, err error) error
- func Quest(h *https.CURL)
- func QuestJson(s []byte)
- func Recover(f ...func())
- func Regedit(c *Config)
- func Rtime(t time.Time)
- func SaveAny(inf byte, file string, line uint, msg string, err error)
- func SaveAnyError(inf byte, file string, line uint, msg string, err error) error
- func User(uid uint, typ, info string)
- func WE(msg string, err error) error
- func Warning(msg string, err error)
- func WarningError(msg string, err error) error
- type Config
- type FuncLog
- type LogSave
- type LogStruct
- type OldQuestStructdeprecated
- type QuestStruct
- type TypeInfo
- type UserLogStruct
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Ftime ¶ added in v0.1.12
统计函数耗时,用法:defer xlog.Ftime(time.Now())
因内部使用了反射机制,所以无法使用匿名函数进行多层函数名获取 所以此处暂时截至到此处,使用 defer xlog.Ftime(time.Now()) 的固定结构来统计时长 另,因内部使用了 go 队列的形式来进行入库,所以建议此函数使用在正常运行的结构中 可随时退出的命令行记录的话建议使用 defer xlog.RTime(time.Now()) 来记录日志
t 当前时间
func LogMigration
deprecated
added in
v0.1.26
func LogMigration()
日志迁移表信息
Deprecated: 该函数在v0.1.40以后版本即将进行弃用,此处不再起作用
func QuestJson ¶ added in v0.1.27
func QuestJson(s []byte)
记录其他符合规则的HTTP请求,JSON格式化后结构需要为https.CURL结构
s JSON字节码
func Recover ¶ added in v0.2.21
func Recover(f ...func())
程序Recover恢复及记录相关信息 此程序为放置在defer中,避免程序强退导致异常的消息记录,所以使用时请直接:defer xlog.Recover()
f Recover时调用的函数列表,一般留空,最常用作用为panic时的特殊日志记录(除xlog.Panic记录外的其他记录)
func Rtime ¶ added in v0.1.12
统计函数耗时,用法:defer xlog.Rtime(time.Now())
因内部使用了反射机制,所以无法使用匿名函数进行多层函数名获取 所以此处暂时截至到此处,使用 defer xlog.Ftime(time.Now()) 的固定结构来统计时长
t 当前时间
func SaveAny ¶ added in v0.0.17
记录日志信息[对外函数,用于记录任意类型/等级的日志信息]
inf 日志等级 file 错误文件 line 错误行号 msg 消息备注 err 错误详情
func SaveAnyError ¶ added in v0.1.1
记录日志信息[对外函数,用于记录任意类型/等级的日志信息]
inf 日志等级 file 错误文件 line 错误行号 msg 消息备注 err 错误详情
Types ¶
type Config ¶
type Config struct { DB *gorm.DB // 数据库连接 SaveInterface LogSave // 不记录到DB数据库中,而是直接调用接口进行记录【一旦传入此接口,数据库中将不再进行插入】 Console bool // 是否输出到控制台中 TableName string // 日志记录的数据表 QuestName string // http请求记录 FuncLogName string // 函数耗时存储表 // 程序所在目录 // // Deprecated: 该函数在v0.2.40以后版本即将进行弃用,在v0.3.x版本中彻底移除 RunDir string // 日志中存储日志的最大天数,默认30天 // // Deprecated: 该函数在v0.2.40以后版本即将进行弃用,在v0.3.x版本中彻底移除 MaxTimes uint // 默认旧的日志表名称,默认为[log_old] // // Deprecated: 该函数在v0.2.40以后版本即将进行弃用,在v0.3.x版本中彻底移除 OldTableName string // 默认旧的函数耗时存储表名称,默认为[log_func_runtime_old] // // Deprecated: 该函数在v0.2.40以后版本即将进行弃用,在v0.3.x版本中彻底移除 OldFuncLogName string // http请求记录历史记录表,默认为[log_quest_name] // // Deprecated: 该函数在v0.2.40以后版本即将进行弃用,在v0.3.x版本中彻底移除 OldQuestName string // 单次迁移最大条数,默认为10000(每次均需要迁移log和log_func,所以最多为MaxMigrationLimit*2条记录) // // Deprecated: 该函数在v0.2.40以后版本即将进行弃用,在v0.3.x版本中彻底移除 MaxMigrationLimit uint // 日志回调【为了避免循环调用,此函数中禁止使用xlog.xxxx进行日志记录】 // // Deprecated: 该函数在v0.2.40以后版本即将进行弃用,在v0.3.x版本中彻底移除 InsertAfter func(log *LogStruct, fun *FuncLog, quest *QuestStruct) // 每秒钟回调日志处理函数次数,超过该次数将会丢弃【避免xlog循环记录,默认值为10】 // // Deprecated: 该函数在v0.2.40以后版本即将进行弃用,在v0.3.x版本中彻底移除 LkInsertAfterNum int // contains filtered or unexported fields }
日志记录模块使用GO携程进行日志记录(此形式可能会存在退出的时候谢程未全部退出的问题,该问题会造成部分日志记录失败的情况) 错误等级:Info -> Notice -> Warning -> Error -> Crit -> Alert -> Panic 错误等级简写:I -> N -> W -> E -> C -> A -> P 备注:此等级中,Crit、Alert、Panic错误为影响到程序正常运行的错误,Error为需要注意,即将影响到正常运行的错误
Panic等级的错误也只是记录到数据库中,而不是直接将程序进行panic退出 记录函数的执行时常 调用方法为:defer xlog.FTime(time.Now())
配置项
type FuncLog ¶ added in v0.1.12
type FuncLog struct { Id uint64 `gorm:"column:id;primary_key;type:BIGINT UNSIGNED;not null;autoIncrement" json:"id" form:"id"` // 条目ID Func string `gorm:"column:func;type:VARCHAR(200);comment:函数名称" json:"func" form:"func"` //函数名称 Line uint `gorm:"column:line;comment:调用行数" json:"line" form:"line"` //调用行数 Runtime uint64 `gorm:"column:runtime;type:BIGINT UNSIGNED;comment:耗时:ns" json:"runtime" form:"runtime"` // 耗时:ns CreatedAt string `gorm:"column:created_at;type:DATETIME;comment:调用时间" json:"created_at" form:"created_at"` //调用时间 }
函数耗时日志表
type LogSave ¶ added in v0.2.40
type LogSave interface { // 记录正常日志信息 Log(c *LogStruct) // 记录Quest的Http请求日志 Quest(c *QuestStruct) // 记录Func的函数调用耗时日志 Func(c *FuncLog) }
日志写入接口
type LogStruct ¶ added in v0.0.16
type LogStruct struct { Id uint64 `gorm:"column:id;primary_key;type:BIGINT UNSIGNED;not null;autoIncrement" json:"id" form:"id"` // 条目ID Type string `gorm:"column:type;type:CHAR(1);comment:错误类型;index:error_type" json:"type" form:"type"` //错误类型,如:I、D等 File string `gorm:"column:file;type:VARCHAR(200);comment:错误文件" json:"file" form:"file"` //错误文件 Line uint `gorm:"column:line;comment:文件行数;index:error_type" json:"line" form:"line"` //错误行数 Msg string `gorm:"column:msg;type:VARCHAR(200);comment:消息概述" json:"msg" form:"msg"` //错误消息概述 Content string `gorm:"column:content;type:TEXT;comment:错误消息内容" json:"content" form:"content"` //错误信息内容 CreatedAt string `gorm:"column:created_at;type:DATETIME;comment:创建时间" json:"created_at" form:"created_at"` //错误发生时间 }
错误信息统计表
type OldQuestStruct
deprecated
added in
v0.1.27
type OldQuestStruct struct { Id uint `gorm:"column:id;type:int(10) unsigned;primary_key;autoIncrement;not null" form:"id" json:"id"` Uri string `gorm:"column:uri;type:varchar(200);comment:HTTP请求网址" form:"uri" json:"uri"` //HTTP请求网址 Param string `gorm:"column:param;type:longtext;comment:请求参数[JSON格式存储]" form:"param" json:"param"` //请求参数[JSON格式存储] HttpCode int `gorm:"column:http_code;type:int(11);not null;comment:HTTP请求返回的Code值" form:"http_code" json:"http_code"` //HTTP请求返回的Code值 Body string `gorm:"column:body;type:longtext;comment:HTTP请求返回值" form:"body" json:"body"` //HTTP请求返回值 Error string `gorm:"column:error;type:varchar(200);comment:HTTP请求报错信息" form:"error" json:"error"` //HTTP请求报错信息 Header string `gorm:"column:header;type:text;comment:HTTP请求时发送的Header请求头" form:"header" json:"header"` //HTTP请求时发送的Header请求头 StartTime string `gorm:"column:start_time;type:datetime;comment:HTTP请求开始时间" form:"start_time" json:"start_time"` //HTTP请求开始时间 EndTime string `gorm:"column:end_time;type:datetime;comment:HTTP请求结束时间" form:"end_time" json:"end_time"` //HTTP请求结束时间 QuestSec uint `gorm:"column:quest_sec;type:int(10) unsigned;not null;comment:请求耗时 单位:毫秒" form:"quest_sec" json:"quest_sec"` //请求耗时 单位:毫秒 ClientIp string `gorm:"column:client_ip;type:varchar(60);not null;comment:客户端IP地址,兼容IPV6" form:"client_ip" json:"client_ip"` // 客户端IP地址,兼容IPV6 }
https请求日志记录
Deprecated: 该函数在v0.2.40以后版本即将进行弃用,在v0.3.x版本中彻底移除
func (*OldQuestStruct) TableName
deprecated
added in
v0.1.27
func (c *OldQuestStruct) TableName() string
返回所属表名信息
Deprecated: 该函数在v0.2.40以后版本即将进行弃用,在v0.3.x版本中彻底移除
type QuestStruct ¶ added in v0.1.27
type QuestStruct struct { Id uint `gorm:"column:id;type:int(10) unsigned;primary_key;autoIncrement;not null" form:"id" json:"id"` Uri string `gorm:"column:uri;type:varchar(200);comment:HTTP请求网址" form:"uri" json:"uri"` //HTTP请求网址 Param string `gorm:"column:param;type:longtext;comment:请求参数[JSON格式存储]" form:"param" json:"param"` //请求参数[JSON格式存储] HttpCode int `gorm:"column:http_code;type:int(11);not null;comment:HTTP请求返回的Code值" form:"http_code" json:"http_code"` //HTTP请求返回的Code值 Body string `gorm:"column:body;type:longtext;comment:HTTP请求返回值" form:"body" json:"body"` //HTTP请求返回值 Error string `gorm:"column:error;type:varchar(200);comment:HTTP请求报错信息" form:"error" json:"error"` //HTTP请求报错信息 Header string `gorm:"column:header;type:text;comment:HTTP请求时发送的Header请求头" form:"header" json:"header"` //HTTP请求时发送的Header请求头 StartTime string `gorm:"column:start_time;type:datetime;comment:HTTP请求开始时间" form:"start_time" json:"start_time"` //HTTP请求开始时间 EndTime string `gorm:"column:end_time;type:datetime;comment:HTTP请求结束时间" form:"end_time" json:"end_time"` //HTTP请求结束时间 QuestSec uint `gorm:"column:quest_sec;type:int(10) unsigned;not null;comment:请求耗时 单位:毫秒" form:"quest_sec" json:"quest_sec"` //请求耗时 单位:毫秒 ClientIp string `gorm:"column:client_ip;type:varchar(60);not null;comment:客户端IP地址,兼容IPV6" form:"client_ip" json:"client_ip"` // 客户端IP地址,兼容IPV6 }
https请求日志记录
type TypeInfo ¶ added in v0.1.16
type UserLogStruct ¶ added in v0.1.29
type UserLogStruct struct { Id uint64 `gorm:"column:id" json:"id" form:"id"` // 条目ID Uid uint `gorm:"column:line" json:"uid" form:"uid"` //错误行数 LogType string `gorm:"column:msg" json:"log_type" form:"log_type"` //错误消息概述 Content string `gorm:"column:content" json:"content" form:"content"` //错误信息内容 CreatedAt string `gorm:"column:created_at" json:"created_at" form:"created_at"` //错误发生时间 }
用户错误信息返回结构
func GetLogUser ¶ added in v0.1.16
func GetLogUser(uid uint, offset, limit int) (int64, []UserLogStruct, error)
获取用户日志记录
uid 用户ID offset 跳过条数 limit 查询条数