Code & Deploy
Code
Code Review
Models
Repos
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@cryptotaxi247
/
netdata-1
netdata-1
/
src
/
go
/
pkg
/
metrix
/
value_validation.go
Code
Commits
Issues
Pulls
Sessions
CI/CD
master
master
go
11 lines
192 Bytes
Copy permalink
Copy
Raw
1
// SPDX-License-Identifier: GPL-3.0-or-later
2
3
package
metrix
4
5
import
"math"
6
7
func
mustFiniteSample
(
v
SampleValue
)
{
8
if
math
.
IsNaN
(
v
)
||
math
.
IsInf
(
v
,
0
)
{
9
panic
(
errInvalidSampleValue
)
10
}
11
}