Code & Deploy
Code
Code Review
Models
Repos
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@cryptotaxi247
/
netdata
netdata
/
src
/
go
/
pkg
/
metrix
/
identity.go
Code
Commits
Issues
Pulls
Sessions
CI/CD
master
master
go
12 lines
211 Bytes
Copy permalink
Copy
Raw
1
// SPDX-License-Identifier: GPL-3.0-or-later
2
3
package
metrix
4
5
import
"github.com/cespare/xxhash/v2"
6
7
func
seriesIDHash
(
id
SeriesID
)
uint64
{
8
if
id
==
""
{
9
return
0
10
}
11
return
xxhash
.
Sum64String
(
string
(
id
))
12
}