gotsrpc/stats.go
2023-07-11 08:11:52 +02:00

18 lines
312 B
Go

package gotsrpc
import "time"
type CallStats struct {
Package string
Service string
Func string
Execution time.Duration
Marshalling time.Duration
Unmarshalling time.Duration
RequestSize int
ResponseSize int
ErrorCode int
ErrorType string
ErrorMessage string
}