mirror of
https://github.com/openziti/zrok.git
synced 2024-11-07 08:44:14 +01:00
13 lines
186 B
Go
13 lines
186 B
Go
package model
|
|
|
|
type Metrics struct {
|
|
Namespace string
|
|
Sessions map[string]SessionMetrics
|
|
}
|
|
|
|
type SessionMetrics struct {
|
|
BytesRead int64
|
|
BytesWritten int64
|
|
LastUpdate int64
|
|
}
|