gotsrpc/stats.go
Kevin Franklin Kim 7faf7e4c98 feat: add monitor
2022-05-04 11:16:04 +02:00

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
}