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"
|
2022-05-27 05:47:32 +00:00
|
|
|
"fmt"
|
2020-08-04 05:50:52 +00:00
|
|
|
"net/http"
|
2020-08-05 09:31:04 +00:00
|
|
|
"os"
|
2020-08-04 05:50:52 +00:00
|
|
|
|
2023-04-01 07:05:18 +00:00
|
|
|
"github.com/alecthomas/kingpin/v2"
|
2021-10-03 11:30:18 +00:00
|
|
|
"github.com/go-kit/log"
|
|
|
|
"github.com/go-kit/log/level"
|
2020-08-04 05:50:52 +00:00
|
|
|
"github.com/prometheus-community/json_exporter/config"
|
2020-10-03 00:03:56 +00:00
|
|
|
"github.com/prometheus-community/json_exporter/exporter"
|
2020-08-04 05:50:52 +00:00
|
|
|
"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"
|
2021-01-24 03:51:34 +00:00
|
|
|
"github.com/prometheus/exporter-toolkit/web"
|
2022-12-29 05:14:14 +00:00
|
|
|
"github.com/prometheus/exporter-toolkit/web/kingpinflag"
|
2020-08-04 05:50:52 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2023-04-01 07:05:18 +00:00
|
|
|
configFile = kingpin.Flag("config.file", "JSON exporter configuration file.").Default("config.yml").ExistingFile()
|
|
|
|
configCheck = kingpin.Flag("config.check", "If true validate the config file and then exit.").Default("false").Bool()
|
|
|
|
metricsPath = kingpin.Flag(
|
|
|
|
"web.telemetry-path",
|
|
|
|
"Path under which to expose metrics.",
|
|
|
|
).Default("/metrics").String()
|
2022-12-29 05:14:14 +00:00
|
|
|
toolkitFlags = kingpinflag.AddFlags(kingpin.CommandLine, ":7979")
|
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)
|
|
|
|
|
2021-10-03 11:30:18 +00:00
|
|
|
level.Info(logger).Log("msg", "Starting json_exporter", "version", version.Info())
|
|
|
|
level.Info(logger).Log("msg", "Build context", "build", version.BuildContext())
|
2020-08-05 09:31:04 +00:00
|
|
|
|
2021-10-03 11:30:18 +00:00
|
|
|
level.Info(logger).Log("msg", "Loading config file", "file", *configFile)
|
2020-08-05 22:28:29 +00:00
|
|
|
config, err := config.LoadConfig(*configFile)
|
2020-08-04 05:50:52 +00:00
|
|
|
if err != nil {
|
2021-10-03 11:30:18 +00:00
|
|
|
level.Error(logger).Log("msg", "Error loading config", "err", err)
|
2020-08-05 09:31:04 +00:00
|
|
|
os.Exit(1)
|
2020-08-04 05:50:52 +00:00
|
|
|
}
|
2021-10-05 11:21:42 +00:00
|
|
|
configJSON, err := json.Marshal(config)
|
2020-08-04 05:50:52 +00:00
|
|
|
if err != nil {
|
2021-10-03 11:30:18 +00:00
|
|
|
level.Error(logger).Log("msg", "Failed to marshal config to JSON", "err", err)
|
2020-08-04 05:50:52 +00:00
|
|
|
}
|
2021-10-05 11:21:42 +00:00
|
|
|
level.Info(logger).Log("msg", "Loaded config file", "config", string(configJSON))
|
2020-08-05 22:28:29 +00:00
|
|
|
|
|
|
|
if *configCheck {
|
|
|
|
os.Exit(0)
|
|
|
|
}
|
2020-08-04 05:50:52 +00:00
|
|
|
|
2023-04-01 07:05:18 +00:00
|
|
|
http.Handle(*metricsPath, promhttp.Handler())
|
2020-08-04 05:50:52 +00:00
|
|
|
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
|
|
|
})
|
2023-04-01 07:05:18 +00:00
|
|
|
if *metricsPath != "/" && *metricsPath != "" {
|
|
|
|
landingConfig := web.LandingConfig{
|
|
|
|
Name: "JSON Exporter",
|
|
|
|
Description: "Prometheus Exporter for converting json to metrics",
|
|
|
|
Version: version.Info(),
|
|
|
|
Links: []web.LandingLinks{
|
|
|
|
{
|
|
|
|
Address: *metricsPath,
|
|
|
|
Text: "Metrics",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
landingPage, err := web.NewLandingPage(landingConfig)
|
|
|
|
if err != nil {
|
|
|
|
level.Error(logger).Log("err", err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
http.Handle("/", landingPage)
|
|
|
|
}
|
2020-12-10 17:04:16 +00:00
|
|
|
|
2022-12-29 05:14:14 +00:00
|
|
|
server := &http.Server{}
|
|
|
|
if err := web.ListenAndServe(server, toolkitFlags, logger); err != nil {
|
2021-10-03 11:30:18 +00:00
|
|
|
level.Error(logger).Log("msg", "Failed to start the server", "err", err)
|
2020-12-10 17:04:16 +00:00
|
|
|
os.Exit(1)
|
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
|
|
|
|
2020-08-20 02:48:09 +00:00
|
|
|
ctx, cancel := context.WithCancel(r.Context())
|
2020-08-04 05:50:52 +00:00
|
|
|
defer cancel()
|
|
|
|
r = r.WithContext(ctx)
|
|
|
|
|
2022-05-27 05:47:32 +00:00
|
|
|
module := r.URL.Query().Get("module")
|
|
|
|
if module == "" {
|
|
|
|
module = "default"
|
|
|
|
}
|
|
|
|
if _, ok := config.Modules[module]; !ok {
|
|
|
|
http.Error(w, fmt.Sprintf("Unknown module %q", module), http.StatusBadRequest)
|
|
|
|
level.Debug(logger).Log("msg", "Unknown module", "module", module)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-08-04 05:50:52 +00:00
|
|
|
registry := prometheus.NewPedanticRegistry()
|
|
|
|
|
2022-05-27 05:47:32 +00:00
|
|
|
metrics, err := exporter.CreateMetricsList(config.Modules[module])
|
2020-08-04 05:50:52 +00:00
|
|
|
if err != nil {
|
2021-10-03 11:30:18 +00:00
|
|
|
level.Error(logger).Log("msg", "Failed to create metrics list from config", "err", err)
|
2020-08-04 05:50:52 +00:00
|
|
|
}
|
|
|
|
|
2021-10-05 11:21:42 +00:00
|
|
|
jsonMetricCollector := exporter.JSONMetricCollector{JSONMetrics: metrics}
|
2020-08-18 23:56:31 +00:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2022-05-27 05:47:32 +00:00
|
|
|
fetcher := exporter.NewJSONFetcher(ctx, logger, config.Modules[module], r.URL.Query())
|
2021-10-05 11:21:42 +00:00
|
|
|
data, err := fetcher.FetchJSON(target)
|
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)
|
|
|
|
|
|
|
|
}
|