18 lines
274 B
Go
18 lines
274 B
Go
package model
|
|
|
|
type Record struct {
|
|
Level string
|
|
TS uint64
|
|
Message string
|
|
Module []string
|
|
Stacktrace string
|
|
|
|
KeyFields map[string]interface{}
|
|
CtxFields map[string]interface{}
|
|
SvcBuildTime uint64
|
|
SvcVersion string
|
|
SvcCommit string
|
|
SvcFile string
|
|
SvcLine uint64
|
|
}
|