grpc.go 777 B

1234567891011121314151617
  1. package trace
  2. import (
  3. "google.golang.org/grpc/metadata"
  4. )
  5. type Grpc struct {
  6. Timestamp string `json:"timestamp"` // 时间,格式:2006-01-02 15:04:05
  7. Addr string `json:"addr"` // 地址
  8. Method string `json:"method"` // 操作方法
  9. Meta metadata.MD `json:"meta"` // Mate
  10. Request map[string]any `json:"request"` // 请求信息
  11. Response map[string]any `json:"response"` // 返回信息
  12. CostSeconds float64 `json:"cost_seconds"` // 执行时间(单位秒)
  13. Code string `json:"err_code,omitempty"` // 错误码
  14. Message string `json:"err_message,omitempty"` // 错误信息
  15. }