Files
EdgeNode/internal/metrics/stat.go

23 lines
592 B
Go
Raw Normal View History

2021-06-30 20:01:00 +08:00
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
package metrics
import (
2022-04-04 18:25:54 +08:00
"github.com/TeaOSLab/EdgeNode/internal/utils/fnv"
2021-06-30 20:01:00 +08:00
"strconv"
2022-04-04 18:25:54 +08:00
"strings"
2021-06-30 20:01:00 +08:00
)
type Stat struct {
ServerId int64
Keys []string
Hash string
Value int64
Time string
}
2021-08-22 10:07:04 +08:00
func SumStat(serverId int64, keys []string, time string, version int32, itemId int64) string {
2023-08-15 20:12:09 +08:00
var keysData = strings.Join(keys, "$EDGE$")
2022-04-04 18:25:54 +08:00
return strconv.FormatUint(fnv.HashString(strconv.FormatInt(serverId, 10)+"@"+keysData+"@"+time+"@"+strconv.Itoa(int(version))+"@"+strconv.FormatInt(itemId, 10)), 10)
2021-06-30 20:01:00 +08:00
}