mirror of
https://github.com/foomo/gotsrpc.git
synced 2025-10-16 12:35:35 +00:00
18 lines
312 B
Go
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
|
|
}
|