2020-04-17 06:42:16 +00:00
|
|
|
// Copyright 2020 The Prometheus Authors
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2016-02-08 13:48:30 +00:00
|
|
|
package jsonexporter
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2017-10-06 00:59:28 +00:00
|
|
|
"math"
|
|
|
|
"strconv"
|
|
|
|
|
2016-02-08 14:08:52 +00:00
|
|
|
"github.com/kawamuray/jsonpath" // Originally: "github.com/NickSardo/jsonpath"
|
2020-04-17 06:39:48 +00:00
|
|
|
"github.com/prometheus-community/json_exporter/harness"
|
2016-02-08 13:48:30 +00:00
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
2020-04-17 06:24:27 +00:00
|
|
|
log "github.com/sirupsen/logrus"
|
2016-02-08 13:48:30 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type JsonScraper interface {
|
|
|
|
Scrape(data []byte, reg *harness.MetricRegistry) error
|
|
|
|
}
|
|
|
|
|
|
|
|
type ValueScraper struct {
|
|
|
|
*Config
|
|
|
|
valueJsonPath *jsonpath.Path
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewValueScraper(config *Config) (JsonScraper, error) {
|
|
|
|
valuepath, err := compilePath(config.Path)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to parse path;path:<%s>,err:<%s>", config.Path, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
scraper := &ValueScraper{
|
|
|
|
Config: config,
|
|
|
|
valueJsonPath: valuepath,
|
|
|
|
}
|
|
|
|
return scraper, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (vs *ValueScraper) parseValue(bytes []byte) (float64, error) {
|
|
|
|
value, err := strconv.ParseFloat(string(bytes), 64)
|
|
|
|
if err != nil {
|
|
|
|
return -1.0, fmt.Errorf("failed to parse value as float;value:<%s>", bytes)
|
|
|
|
}
|
|
|
|
return value, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (vs *ValueScraper) forTargetValue(data []byte, handle func(*jsonpath.Result)) error {
|
|
|
|
eval, err := jsonpath.EvalPathsInBytes(data, []*jsonpath.Path{vs.valueJsonPath})
|
|
|
|
if err != nil {
|
2020-04-17 06:59:32 +00:00
|
|
|
return fmt.Errorf("failed to eval jsonpath;path:<%v>,json:<%s>", vs.valueJsonPath, data)
|
2016-02-08 13:48:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for {
|
|
|
|
result, ok := eval.Next()
|
|
|
|
if !ok {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
handle(result)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (vs *ValueScraper) Scrape(data []byte, reg *harness.MetricRegistry) error {
|
|
|
|
isFirst := true
|
|
|
|
return vs.forTargetValue(data, func(result *jsonpath.Result) {
|
|
|
|
if !isFirst {
|
2020-04-17 06:59:32 +00:00
|
|
|
log.Infof("ignoring non-first value;path:<%v>", vs.valueJsonPath)
|
2016-02-08 13:48:30 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
isFirst = false
|
|
|
|
|
2017-10-06 00:59:28 +00:00
|
|
|
var value float64
|
2018-08-21 00:04:29 +00:00
|
|
|
var boolValue bool
|
2017-10-06 00:59:28 +00:00
|
|
|
var err error
|
|
|
|
switch result.Type {
|
|
|
|
case jsonpath.JsonNumber:
|
|
|
|
value, err = vs.parseValue(result.Value)
|
|
|
|
case jsonpath.JsonString:
|
|
|
|
// If it is a string, lets pull off the quotes and attempt to parse it as a number
|
|
|
|
value, err = vs.parseValue(result.Value[1 : len(result.Value)-1])
|
|
|
|
case jsonpath.JsonNull:
|
|
|
|
value = math.NaN()
|
2018-08-21 00:04:29 +00:00
|
|
|
case jsonpath.JsonBool:
|
|
|
|
if boolValue, err = strconv.ParseBool(string(result.Value)); boolValue {
|
|
|
|
value = 1
|
|
|
|
} else {
|
|
|
|
value = 0
|
|
|
|
}
|
2017-10-06 00:59:28 +00:00
|
|
|
default:
|
2020-04-17 06:59:32 +00:00
|
|
|
log.Warnf("skipping not numerical result;path:<%v>,value:<%s>",
|
2016-02-08 13:48:30 +00:00
|
|
|
vs.valueJsonPath, result.Value)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
// Should never happen.
|
2020-04-17 06:59:32 +00:00
|
|
|
log.Errorf("could not parse numerical value as float;path:<%v>,value:<%s>",
|
2016-02-08 13:48:30 +00:00
|
|
|
vs.valueJsonPath, result.Value)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Debugf("metric updated;name:<%s>,labels:<%s>,value:<%.2f>", vs.Name, vs.Labels, value)
|
|
|
|
reg.Get(vs.Name).(*prometheus.GaugeVec).With(vs.Labels).Set(value)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
type ObjectScraper struct {
|
|
|
|
*ValueScraper
|
|
|
|
labelJsonPaths map[string]*jsonpath.Path
|
|
|
|
valueJsonPaths map[string]*jsonpath.Path
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewObjectScraper(config *Config) (JsonScraper, error) {
|
|
|
|
valueScraper, err := NewValueScraper(config)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
labelPaths, err := compilePaths(config.Labels)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
valuePaths, err := compilePaths(config.Values)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
scraper := &ObjectScraper{
|
|
|
|
ValueScraper: valueScraper.(*ValueScraper),
|
|
|
|
labelJsonPaths: labelPaths,
|
|
|
|
valueJsonPaths: valuePaths,
|
|
|
|
}
|
|
|
|
return scraper, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (obsc *ObjectScraper) newLabels() map[string]string {
|
|
|
|
labels := make(map[string]string)
|
|
|
|
for name, value := range obsc.Labels {
|
|
|
|
if _, ok := obsc.labelJsonPaths[name]; !ok {
|
|
|
|
// Static label value.
|
|
|
|
labels[name] = value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return labels
|
|
|
|
}
|
|
|
|
|
|
|
|
func (obsc *ObjectScraper) extractFirstValue(data []byte, path *jsonpath.Path) (*jsonpath.Result, error) {
|
|
|
|
eval, err := jsonpath.EvalPathsInBytes(data, []*jsonpath.Path{path})
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to eval jsonpath;err:<%s>", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
result, ok := eval.Next()
|
|
|
|
if !ok {
|
|
|
|
return nil, fmt.Errorf("no value found for path")
|
|
|
|
}
|
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (obsc *ObjectScraper) Scrape(data []byte, reg *harness.MetricRegistry) error {
|
|
|
|
return obsc.forTargetValue(data, func(result *jsonpath.Result) {
|
|
|
|
if result.Type != jsonpath.JsonObject && result.Type != jsonpath.JsonArray {
|
2020-04-17 06:59:32 +00:00
|
|
|
log.Warnf("skipping not structual result;path:<%v>,value:<%s>",
|
2016-02-08 13:48:30 +00:00
|
|
|
obsc.valueJsonPath, result.Value)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
labels := obsc.newLabels()
|
|
|
|
for name, path := range obsc.labelJsonPaths {
|
|
|
|
firstResult, err := obsc.extractFirstValue(result.Value, path)
|
|
|
|
if err != nil {
|
2020-04-17 06:59:32 +00:00
|
|
|
log.Warnf("could not find value for label path;path:<%v>,json:<%s>,err:<%s>", path, result.Value, err)
|
2016-02-08 13:48:30 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
value := firstResult.Value
|
|
|
|
if firstResult.Type == jsonpath.JsonString {
|
|
|
|
// Strip quotes
|
|
|
|
value = value[1 : len(value)-1]
|
|
|
|
}
|
|
|
|
labels[name] = string(value)
|
|
|
|
}
|
|
|
|
|
|
|
|
for name, configValue := range obsc.Values {
|
|
|
|
var metricValue float64
|
|
|
|
path := obsc.valueJsonPaths[name]
|
|
|
|
|
|
|
|
if path == nil {
|
|
|
|
// Static value
|
|
|
|
value, err := obsc.parseValue([]byte(configValue))
|
|
|
|
if err != nil {
|
2020-04-17 06:59:32 +00:00
|
|
|
log.Errorf("could not use configured value as float number;err:<%s>", err)
|
2016-02-08 13:48:30 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
metricValue = value
|
|
|
|
} else {
|
|
|
|
// Dynamic value
|
|
|
|
firstResult, err := obsc.extractFirstValue(result.Value, path)
|
|
|
|
if err != nil {
|
2020-04-17 06:59:32 +00:00
|
|
|
log.Warnf("could not find value for value path;path:<%v>,json:<%s>,err:<%s>", path, result.Value, err)
|
2016-02-08 13:48:30 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2017-10-06 00:59:28 +00:00
|
|
|
var value float64
|
2020-06-13 20:55:54 +00:00
|
|
|
var boolValue bool
|
2017-10-06 00:59:28 +00:00
|
|
|
switch firstResult.Type {
|
|
|
|
case jsonpath.JsonNumber:
|
|
|
|
value, err = obsc.parseValue(firstResult.Value)
|
|
|
|
case jsonpath.JsonString:
|
|
|
|
// If it is a string, lets pull off the quotes and attempt to parse it as a number
|
|
|
|
value, err = obsc.parseValue(firstResult.Value[1 : len(firstResult.Value)-1])
|
|
|
|
case jsonpath.JsonNull:
|
|
|
|
value = math.NaN()
|
2020-06-13 20:55:54 +00:00
|
|
|
case jsonpath.JsonBool:
|
|
|
|
if boolValue, err = strconv.ParseBool(string(firstResult.Value)); boolValue {
|
|
|
|
value = 1.0
|
|
|
|
} else {
|
|
|
|
value = 0.0
|
|
|
|
}
|
2017-10-06 00:59:28 +00:00
|
|
|
default:
|
2020-04-17 06:59:32 +00:00
|
|
|
log.Warnf("skipping not numerical result;path:<%v>,value:<%s>",
|
2016-02-08 13:48:30 +00:00
|
|
|
obsc.valueJsonPath, result.Value)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
// Should never happen.
|
2020-04-17 06:59:32 +00:00
|
|
|
log.Errorf("could not parse numerical value as float;path:<%v>,value:<%s>",
|
2016-02-08 13:48:30 +00:00
|
|
|
obsc.valueJsonPath, firstResult.Value)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
metricValue = value
|
|
|
|
}
|
|
|
|
|
|
|
|
fqn := harness.MakeMetricName(obsc.Name, name)
|
|
|
|
log.Debugf("metric updated;name:<%s>,labels:<%s>,value:<%.2f>", fqn, labels, metricValue)
|
|
|
|
reg.Get(fqn).(*prometheus.GaugeVec).With(labels).Set(metricValue)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|