2022-05-13 13:26:45 -04:00
|
|
|
package api
|
|
|
|
|
|
|
|
|
|
type WidgetProcess struct {
|
2023-01-11 15:05:40 -05:00
|
|
|
CurrentSessions uint64 `json:"current_sessions" format:"uint64"`
|
|
|
|
|
TotalSessions uint64 `json:"total_sessions" format:"uint64"`
|
2022-05-13 13:26:45 -04:00
|
|
|
Uptime int64 `json:"uptime"`
|
|
|
|
|
}
|