mirror of
https://github.com/foomo/gotsrpc.git
synced 2025-10-16 12:35:35 +00:00
13 lines
259 B
Go
13 lines
259 B
Go
package gotsrpc
|
|
|
|
import "time"
|
|
|
|
type CallStats struct {
|
|
Package, Service, Func string
|
|
Execution time.Duration
|
|
Marshalling time.Duration
|
|
Unmarshalling time.Duration
|
|
RequestSize int
|
|
ResponseSize int
|
|
}
|