mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-08 03:00:27 +08:00
23 lines
589 B
Go
23 lines
589 B
Go
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
|
|
package metrics
|
|
|
|
import (
|
|
"github.com/TeaOSLab/EdgeNode/internal/utils/fnv"
|
|
"strconv"
|
|
"strings"
|
|
)
|
|
|
|
type Stat struct {
|
|
ServerId int64
|
|
Keys []string
|
|
Hash string
|
|
Value int64
|
|
Time string
|
|
}
|
|
|
|
func SumStat(serverId int64, keys []string, time string, version int32, itemId int64) string {
|
|
keysData := strings.Join(keys, "$EDGE$")
|
|
return strconv.FormatUint(fnv.HashString(strconv.FormatInt(serverId, 10)+"@"+keysData+"@"+time+"@"+strconv.Itoa(int(version))+"@"+strconv.FormatInt(itemId, 10)), 10)
|
|
}
|