mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-22 07:53:38 +01:00
35 lines
1.3 KiB
Go
35 lines
1.3 KiB
Go
package core
|
|
|
|
// Uptime is the struct that contains the relevant data for calculating the uptime as well as the uptime itself
|
|
// and some other statistics
|
|
type Uptime struct {
|
|
// SuccessfulExecutionsPerHour is a map containing the number of successes (value)
|
|
// for every hourly unix timestamps (key)
|
|
// Deprecated
|
|
SuccessfulExecutionsPerHour map[int64]uint64 `json:"-"`
|
|
|
|
// TotalExecutionsPerHour is a map containing the total number of checks (value)
|
|
// for every hourly unix timestamps (key)
|
|
// Deprecated
|
|
TotalExecutionsPerHour map[int64]uint64 `json:"-"`
|
|
|
|
// HourlyStatistics is a map containing metrics collected (value) for every hourly unix timestamps (key)
|
|
//
|
|
// Used only if the storage type is memory
|
|
HourlyStatistics map[int64]*HourlyUptimeStatistics `json:"-"`
|
|
}
|
|
|
|
// HourlyUptimeStatistics is a struct containing all metrics collected over the course of an hour
|
|
type HourlyUptimeStatistics struct {
|
|
TotalExecutions uint64 // Total number of checks
|
|
SuccessfulExecutions uint64 // Number of successful executions
|
|
TotalExecutionsResponseTime uint64 // Total response time for all executions in milliseconds
|
|
}
|
|
|
|
// NewUptime creates a new Uptime
|
|
func NewUptime() *Uptime {
|
|
return &Uptime{
|
|
HourlyStatistics: make(map[int64]*HourlyUptimeStatistics),
|
|
}
|
|
}
|