完成一版trace逻辑
This commit is contained in:
11
define.go
11
define.go
@ -20,9 +20,10 @@ const (
|
||||
//
|
||||
// Date : 23:10 2022/10/14
|
||||
type Behavior struct {
|
||||
ID int `json:"id"` // 行为ID
|
||||
Action string `json:"action"` // 行为
|
||||
Type string `json:"type"` // 行为记录类型
|
||||
Timestamp int64 `json:"timestamp"` // 触发行为的时间,纳秒时间戳
|
||||
Data map[string]interface{} `json:"data"` // 本次行为附带的数据
|
||||
ID int `json:"id"` // 行为ID
|
||||
StartBehaviorID int `json:"start_behavior_id"` // 开始行为的ID,仅对 finish 类型的行为有效
|
||||
Action string `json:"action"` // 行为
|
||||
Type string `json:"type"` // 行为记录类型
|
||||
Timestamp int64 `json:"timestamp"` // 触发行为的时间,纳秒时间戳
|
||||
Data map[string]interface{} `json:"data"` // 本次行为附带的数据
|
||||
}
|
||||
|
Reference in New Issue
Block a user