mirror of
https://github.com/prometheus-community/smartctl_exporter.git
synced 2024-11-16 01:33:07 +01:00
23 lines
478 B
Go
23 lines
478 B
Go
package main
|
|
|
|
import (
|
|
"github.com/tidwall/gjson"
|
|
)
|
|
|
|
// GetStringIfExists returns json value or default
|
|
func GetStringIfExists(json gjson.Result, key string, def string) string {
|
|
value := json.Get(key)
|
|
if value.Exists() {
|
|
return value.String()
|
|
}
|
|
return def
|
|
}
|
|
|
|
// GetFloatIfExists returns json value or default
|
|
func GetFloatIfExists(json gjson.Result, key string, def float64) float64 {
|
|
value := json.Get(key)
|
|
if value.Exists() {
|
|
return value.Float()
|
|
}
|
|
return def
|
|
}
|