metrics/go.mod
Aliaksandr Valialkin 447d235cbb
Do not panic on unsupported Go runtime metrics
Log the unsupported Go runtime metrics on startup instead, so the user is aware of unsupported metrics.
The solution for removing the log lines is to upgrade Go builder.

Reduce the minimum supported Go version at go.mod from Go1.20 to Go1.16, where the runtime/metrics package has been added.
See https://tip.golang.org/doc/go1.16#runtime

Updates https://github.com/VictoriaMetrics/metrics/issues/59
Updates https://github.com/VictoriaMetrics/metrics/pull/60
2023-12-17 16:30:30 +02:00

9 lines
127 B
Modula-2

module github.com/VictoriaMetrics/metrics
require (
github.com/valyala/histogram v1.2.0
golang.org/x/sys v0.15.0
)
go 1.16