From f6c32a90acdb68e1a953741cb50bc8e56ce889af Mon Sep 17 00:00:00 2001 From: TwinProduction Date: Tue, 10 Aug 2021 19:58:19 -0400 Subject: [PATCH] Add small comment --- core/uptime.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/uptime.go b/core/uptime.go index a3d909ab..c91550e3 100644 --- a/core/uptime.go +++ b/core/uptime.go @@ -18,6 +18,8 @@ type Uptime struct { 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:"-"` }