mirror of
https://github.com/ribbybibby/ssl_exporter.git
synced 2026-08-22 20:36:21 +00:00
* Support TLS renegotiation * Bump version * Revert version bump * Extend TLSConfig with renegotiation support * Update config/config.go - comment formatting Co-authored-by: Rob Best <robertbest89@gmail.com> * add dedicated renegotiation example * Create local NewTLSConfig in order to incorporate local extentions * go mod tidy * Move TLS renegotiation parsing into UnmarshalYAML Co-authored-by: Rob Best <robertbest89@gmail.com>
45 lines
864 B
YAML
45 lines
864 B
YAML
modules:
|
|
https:
|
|
prober: https
|
|
https_insecure:
|
|
prober: https
|
|
tls_config:
|
|
insecure_skip_verify: true
|
|
https_renegotiation:
|
|
prober: https
|
|
tls_config:
|
|
renegotiation: freely
|
|
https_proxy:
|
|
prober: https
|
|
https:
|
|
proxy_url: "socks5://localhost:8123"
|
|
https_timeout:
|
|
prober: https
|
|
timeout: 3s
|
|
tcp:
|
|
prober: tcp
|
|
tcp_servername:
|
|
prober: tcp
|
|
tls_config:
|
|
server_name: example.com
|
|
tcp_client_auth:
|
|
prober: tcp
|
|
tls_config:
|
|
ca_file: /etc/tls/ca.crt
|
|
cert_file: /etc/tls/tls.crt
|
|
key_file: /etc/tls/tls.key
|
|
tcp_smtp_starttls:
|
|
prober: tcp
|
|
tcp:
|
|
starttls: smtp
|
|
file:
|
|
prober: file
|
|
kubernetes:
|
|
prober: kubernetes
|
|
kubernetes_kubeconfig:
|
|
prober: kubernetes
|
|
kubernetes:
|
|
kubeconfig: /root/.kube/config
|
|
kubeconfig:
|
|
prober: kubeconfig
|