go.mod: update github.com/VictoriaMetrics/metrics from v1.41.1 to v1.41.2, and github.com/VictoriaMetrics/metricsql from v0.84.10 to v0.85.0

This commit is contained in:
Aliaksandr Valialkin
2026-02-18 14:16:58 +01:00
parent 83bcbc43d1
commit 7a4df5755a
7 changed files with 13 additions and 13 deletions

4
go.mod
View File

@@ -10,8 +10,8 @@ require (
github.com/VictoriaMetrics/VictoriaLogs v0.0.0-20260125191521-bc89d84cd61d
github.com/VictoriaMetrics/easyproto v1.1.3
github.com/VictoriaMetrics/fastcache v1.13.2
github.com/VictoriaMetrics/metrics v1.41.1
github.com/VictoriaMetrics/metricsql v0.84.10
github.com/VictoriaMetrics/metrics v1.41.2
github.com/VictoriaMetrics/metricsql v0.85.0
github.com/aws/aws-sdk-go-v2 v1.41.1
github.com/aws/aws-sdk-go-v2/config v1.32.7
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.22.0

8
go.sum
View File

@@ -58,10 +58,10 @@ github.com/VictoriaMetrics/easyproto v1.1.3 h1:gRSA3ZQs7n4+5I+SniDWD59jde1jVq4Jm
github.com/VictoriaMetrics/easyproto v1.1.3/go.mod h1:QlGlzaJnDfFd8Lk6Ci/fuLxfTo3/GThPs2KH23mv710=
github.com/VictoriaMetrics/fastcache v1.13.2 h1:2XTB49aLSuCex7e9P5rqrfQcMkzGjh5Vq3GMFa8YpCA=
github.com/VictoriaMetrics/fastcache v1.13.2/go.mod h1:hHXhl4DA2fTL2HTZDJFXWgW0LNjo6B+4aj2Wmng3TjU=
github.com/VictoriaMetrics/metrics v1.41.1 h1:xYQilpPmq5BPB+uIbe4Iygdw1cSiI4obYQjfLdQN2Xo=
github.com/VictoriaMetrics/metrics v1.41.1/go.mod h1:xDM82ULLYCYdFRgQ2JBxi8Uf1+8En1So9YUwlGTOqTc=
github.com/VictoriaMetrics/metricsql v0.84.10 h1:P5cEnLxZlPn5DaIoQUUGqyb9TfLIWwbJXYtgOuzbHsg=
github.com/VictoriaMetrics/metricsql v0.84.10/go.mod h1:d4EisFO6ONP/HIGDYTAtwrejJBBeKGQYiRl095bS4QQ=
github.com/VictoriaMetrics/metrics v1.41.2 h1:pLQ4Mw9TqXFq3ZsZVJkz88JHpjL9LY5NHTY3v2gBNAw=
github.com/VictoriaMetrics/metrics v1.41.2/go.mod h1:xDM82ULLYCYdFRgQ2JBxi8Uf1+8En1So9YUwlGTOqTc=
github.com/VictoriaMetrics/metricsql v0.85.0 h1:xI+EfqsOgY0T2yd7p8hcYQ52LOtf+1i8fQQzQ+RGtZM=
github.com/VictoriaMetrics/metricsql v0.85.0/go.mod h1:d4EisFO6ONP/HIGDYTAtwrejJBBeKGQYiRl095bS4QQ=
github.com/VividCortex/ewma v1.2.0 h1:f58SaIzcDXrSy3kWaHNvuJgJ3Nmz59Zji6XoJR/q1ow=
github.com/VividCortex/ewma v1.2.0/go.mod h1:nz4BbCtbLyFDeC9SUHbtcT5644juEuWfUAUnGx7j5l4=
github.com/alecthomas/units v0.0.0-20240927000941-0f3dac36c52b h1:mimo19zliBX/vSQ6PWWSL9lK8qwHozUj03+zLoEB8O0=

View File

@@ -220,7 +220,7 @@ func getVMRange(bucketIdx int) string {
func initBucketRanges() {
v := math.Pow10(e10Min)
start := fmt.Sprintf("%.3e", v)
for i := 0; i < bucketsCount; i++ {
for i := range bucketsCount {
v *= bucketMultiplier
end := fmt.Sprintf("%.3e", v)
bucketRanges[i] = start + "..." + end

View File

@@ -388,10 +388,10 @@ func init() {
// we preset all so that it is safe to use these vals even if the rest of
// init fails
for i := 0; i < int(PM_COUNT); i++ {
for i := range int(PM_COUNT) {
pm_val[i] = 0
}
for i := 0; i < int(FD_COUNT); i++ {
for i := range int(FD_COUNT) {
pm_fd[i] = -1
}
pid := os.Getpid()

View File

@@ -188,7 +188,7 @@ func ValidateBuckets(upperBounds []float64) error {
if len(upperBounds) == 0 {
return fmt.Errorf("upperBounds can't be empty")
}
for i := 0; i < len(upperBounds)-1; i++ {
for i := range len(upperBounds) - 1 {
if upperBounds[i] >= upperBounds[i+1] {
return fmt.Errorf("upper bounds for the buckets must be strictly increasing")
}

View File

@@ -240,7 +240,7 @@ func appendPrettifiedLabelFilters(dst []byte, indent int, lfs []*labelFilterExpr
}
func appendIndent(dst []byte, indent int) []byte {
for i := 0; i < indent; i++ {
for range indent {
dst = append(dst, " "...)
}
return dst

4
vendor/modules.txt vendored
View File

@@ -142,10 +142,10 @@ github.com/VictoriaMetrics/easyproto
# github.com/VictoriaMetrics/fastcache v1.13.2
## explicit; go 1.24.0
github.com/VictoriaMetrics/fastcache
# github.com/VictoriaMetrics/metrics v1.41.1
# github.com/VictoriaMetrics/metrics v1.41.2
## explicit; go 1.24.0
github.com/VictoriaMetrics/metrics
# github.com/VictoriaMetrics/metricsql v0.84.10
# github.com/VictoriaMetrics/metricsql v0.85.0
## explicit; go 1.24.2
github.com/VictoriaMetrics/metricsql
github.com/VictoriaMetrics/metricsql/binaryop