You've already forked ssl_exporter
mirror of
https://github.com/ribbybibby/ssl_exporter.git
synced 2025-07-12 23:50:14 +02:00
* feat: add remote_file probe * fix: use tls module config * chore: write http/https tests for probing remote file * chore: get rid of useless lines * fix: get rid of useless file download, check body directly * fix: use checkCertificateMetrics to actually check values * Rename remote_file to http_file You can fetch remote content with a lot of different protocols, so I think it's worth being specific here. As part of this change I've fixed up some of the logic in the code. I've also created a separate `http_file` block in the module config. * Actually include renamed files --------- Co-authored-by: Anthony LE BERRE <aleberre@veepee.com> Co-authored-by: Rob Best <rob.best@jetstack.io>
26 lines
629 B
Go
26 lines
629 B
Go
package prober
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/go-kit/log"
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
"github.com/ribbybibby/ssl_exporter/v2/config"
|
|
)
|
|
|
|
var (
|
|
// Probers maps a friendly name to a corresponding probe function
|
|
Probers = map[string]ProbeFn{
|
|
"https": ProbeHTTPS,
|
|
"http": ProbeHTTPS,
|
|
"tcp": ProbeTCP,
|
|
"file": ProbeFile,
|
|
"http_file": ProbeHTTPFile,
|
|
"kubernetes": ProbeKubernetes,
|
|
"kubeconfig": ProbeKubeconfig,
|
|
}
|
|
)
|
|
|
|
// ProbeFn probes
|
|
type ProbeFn func(ctx context.Context, logger log.Logger, target string, module config.Module, registry *prometheus.Registry) error
|