summaryrefslogtreecommitdiffstats
path: root/metrics/metrics.go
diff options
context:
space:
mode:
Diffstat (limited to 'metrics/metrics.go')
-rw-r--r--metrics/metrics.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/metrics/metrics.go b/metrics/metrics.go
index 471f48a04..9c46fdf7e 100644
--- a/metrics/metrics.go
+++ b/metrics/metrics.go
@@ -25,7 +25,6 @@ import (
"sync"
"time"
- "github.com/gohugoio/hugo/common/htime"
"github.com/gohugoio/hugo/common/types"
"github.com/gohugoio/hugo/compare"
"github.com/gohugoio/hugo/helpers"
@@ -130,7 +129,7 @@ func (s *Store) TrackValue(key string, value any, cached bool) {
// MeasureSince adds a measurement for key to the metric store.
func (s *Store) MeasureSince(key string, start time.Time) {
s.mu.Lock()
- s.metrics[key] = append(s.metrics[key], htime.Since(start))
+ s.metrics[key] = append(s.metrics[key], time.Since(start))
s.mu.Unlock()
}