2020-08-04 05:50:52 +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.
|
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"encoding/json"
|
|
|
|
"net/http"
|
2020-08-05 09:31:04 +00:00
|
|
|
"os"
|
2020-08-04 05:50:52 +00:00
|
|
|
"time"
|
|
|
|
|
2020-08-05 09:31:04 +00:00
|
|
|
"github.com/go-kit/kit/log"
|
|
|
|
"github.com/go-kit/kit/log/level"
|
2020-08-04 05:50:52 +00:00
|
|
|
"github.com/prometheus-community/json_exporter/config"
|
|
|
|
"github.com/prometheus-community/json_exporter/internal"
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
|
|
"github.com/prometheus/client_golang/prometheus/promhttp"
|
2020-08-05 09:31:04 +00:00
|
|
|
"github.com/prometheus/common/promlog"
|
2020-08-05 22:28:29 +00:00
|
|
|
"github.com/prometheus/common/promlog/flag"
|
2020-08-05 09:31:04 +00:00
|
|
|
"github.com/prometheus/common/version"
|
2020-08-05 22:28:29 +00:00
|
|
|
"gopkg.in/alecthomas/kingpin.v2"
|
2020-08-04 05:50:52 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2020-08-05 22:28:29 +00:00
|
|
|
configFile = kingpin.Flag("config.file", "JSON exporter configuration file.").Default("config.yml").ExistingFile()
|
|
|
|
listenAddress = kingpin.Flag("web.listen-address", "The address to listen on for HTTP requests.").Default(":7979").String()
|
|
|
|
configCheck = kingpin.Flag("config.check", "If true validate the config file and then exit.").Default().Bool()
|
2020-08-04 05:50:52 +00:00
|
|
|
)
|
|
|
|
|
2020-08-05 22:28:29 +00:00
|
|
|
func Run() {
|
2020-08-04 05:50:52 +00:00
|
|
|
|
2020-08-05 09:31:04 +00:00
|
|
|
promlogConfig := &promlog.Config{}
|
2020-08-05 22:28:29 +00:00
|
|
|
|
|
|
|
flag.AddFlags(kingpin.CommandLine, promlogConfig)
|
|
|
|
kingpin.Version(version.Print("json_exporter"))
|
|
|
|
kingpin.HelpFlag.Short('h')
|
|
|
|
kingpin.Parse()
|
2020-08-05 09:31:04 +00:00
|
|
|
logger := promlog.New(promlogConfig)
|
|
|
|
|
2020-08-05 09:39:09 +00:00
|
|
|
level.Info(logger).Log("msg", "Starting json_exporter", "version", version.Info()) //nolint:errcheck
|
|
|
|
level.Info(logger).Log("msg", "Build context", "build", version.BuildContext()) //nolint:errcheck
|
2020-08-05 09:31:04 +00:00
|
|
|
|
2020-08-05 22:28:29 +00:00
|
|
|
level.Info(logger).Log("msg", "Loading config file", "file", *configFile) //nolint:errcheck
|
|
|
|
config, err := config.LoadConfig(*configFile)
|
2020-08-04 05:50:52 +00:00
|
|
|
if err != nil {
|
2020-08-05 09:39:09 +00:00
|
|
|
level.Error(logger).Log("msg", "Error loading config", "err", err) //nolint:errcheck
|
2020-08-05 09:31:04 +00:00
|
|
|
os.Exit(1)
|
2020-08-04 05:50:52 +00:00
|
|
|
}
|
2020-08-05 09:31:04 +00:00
|
|
|
configJson, err := json.Marshal(config)
|
2020-08-04 05:50:52 +00:00
|
|
|
if err != nil {
|
2020-08-05 09:39:09 +00:00
|
|
|
level.Error(logger).Log("msg", "Failed to marshal config to JOSN", "err", err) //nolint:errcheck
|
2020-08-04 05:50:52 +00:00
|
|
|
}
|
2020-08-05 22:28:29 +00:00
|
|
|
level.Info(logger).Log("msg", "Loaded config file", "config", string(configJson)) //nolint:errcheck
|
|
|
|
|
|
|
|
if *configCheck {
|
|
|
|
os.Exit(0)
|
|
|
|
}
|
2020-08-04 05:50:52 +00:00
|
|
|
|
|
|
|
http.Handle("/metrics", promhttp.Handler())
|
|
|
|
http.HandleFunc("/probe", func(w http.ResponseWriter, req *http.Request) {
|
2020-08-05 09:31:04 +00:00
|
|
|
probeHandler(w, req, logger, config)
|
2020-08-04 05:50:52 +00:00
|
|
|
})
|
2020-08-05 22:28:29 +00:00
|
|
|
if err := http.ListenAndServe(*listenAddress, nil); err != nil {
|
2020-08-05 09:39:09 +00:00
|
|
|
level.Error(logger).Log("msg", "failed to start the server", "err", err) //nolint:errcheck
|
2020-08-04 05:50:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-05 09:31:04 +00:00
|
|
|
func probeHandler(w http.ResponseWriter, r *http.Request, logger log.Logger, config config.Config) {
|
2020-08-04 05:50:52 +00:00
|
|
|
|
|
|
|
ctx, cancel := context.WithTimeout(r.Context(), time.Duration(config.Global.TimeoutSeconds*float64(time.Second)))
|
|
|
|
defer cancel()
|
|
|
|
r = r.WithContext(ctx)
|
|
|
|
|
|
|
|
registry := prometheus.NewPedanticRegistry()
|
|
|
|
|
2020-08-18 23:56:31 +00:00
|
|
|
metrics, err := internal.CreateMetricsList(config)
|
2020-08-04 05:50:52 +00:00
|
|
|
if err != nil {
|
2020-08-05 09:39:09 +00:00
|
|
|
level.Error(logger).Log("msg", "Failed to create metrics list from config", "err", err) //nolint:errcheck
|
2020-08-04 05:50:52 +00:00
|
|
|
}
|
|
|
|
|
2020-08-18 23:56:31 +00:00
|
|
|
jsonMetricCollector := internal.JsonMetricCollector{JsonMetrics: metrics}
|
|
|
|
jsonMetricCollector.Logger = logger
|
|
|
|
|
2020-08-04 05:50:52 +00:00
|
|
|
target := r.URL.Query().Get("target")
|
|
|
|
if target == "" {
|
|
|
|
http.Error(w, "Target parameter is missing", http.StatusBadRequest)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-08-06 11:03:21 +00:00
|
|
|
data, err := internal.FetchJson(ctx, logger, target, config)
|
2020-08-04 05:50:52 +00:00
|
|
|
if err != nil {
|
2020-08-18 03:28:18 +00:00
|
|
|
http.Error(w, "Failed to fetch JSON response. TARGET: "+target+", ERROR: "+err.Error(), http.StatusServiceUnavailable)
|
2020-08-18 23:56:31 +00:00
|
|
|
return
|
2020-08-04 05:50:52 +00:00
|
|
|
}
|
|
|
|
|
2020-08-18 23:56:31 +00:00
|
|
|
jsonMetricCollector.Data = data
|
|
|
|
|
|
|
|
registry.MustRegister(jsonMetricCollector)
|
2020-08-04 05:50:52 +00:00
|
|
|
h := promhttp.HandlerFor(registry, promhttp.HandlerOpts{})
|
|
|
|
h.ServeHTTP(w, r)
|
|
|
|
|
|
|
|
}
|