redis.go 448 B

12345678910
  1. package trace
  2. type Redis struct {
  3. Timestamp string `json:"timestamp"` // 时间,格式:2006-01-02 15:04:05
  4. Handle string `json:"handle"` // 操作,SET/GET 等
  5. Key string `json:"key"` // Key
  6. Value string `json:"value,omitempty"` // Value
  7. TTL float64 `json:"ttl,omitempty"` // 超时时长(单位分)
  8. CostSeconds float64 `json:"cost_seconds"` // 执行时间(单位秒)
  9. }