zrok/model/metrics.go

13 lines
186 B
Go
Raw Normal View History

2022-10-14 19:55:35 +02:00
package model
type Metrics struct {
2022-10-17 19:45:52 +02:00
Namespace string
Sessions map[string]SessionMetrics
2022-10-14 19:55:35 +02:00
}
type SessionMetrics struct {
BytesRead int64
BytesWritten int64
LastUpdate int64
}