mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
vmalert: add support for TLS configuration (#578)
app/vmalert: add support for TLS configuration Add support for TLS optional configuration in a similar fashion to what is currently supported in other vmutils such as vmagent. TLS configuration options are distinct for datasource, remoteRead, remoteWrite as well as notifier.
This commit is contained in:
parent
2a39ba639d
commit
72c90bfd8b
4 changed files with 213 additions and 13 deletions
|
@ -158,6 +158,16 @@ Usage of vmalert:
|
||||||
Optional basic auth password for -datasource.url
|
Optional basic auth password for -datasource.url
|
||||||
-datasource.basicAuth.username string
|
-datasource.basicAuth.username string
|
||||||
Optional basic auth username for -datasource.url
|
Optional basic auth username for -datasource.url
|
||||||
|
-datasource.tlsCAFile value
|
||||||
|
Optional path to TLS CA file to use for verifying connections to -datasource.url. By default system CA is used.
|
||||||
|
-datasource.tlsCertFile value
|
||||||
|
Optional path to client-side TLS certificate file to use when connecting to -datasource.url.
|
||||||
|
-datasource.tlsInsecureSkipVerify
|
||||||
|
Whether to skip tls verification when connecting to -datasource.url
|
||||||
|
-datasource.tlsKeyFile value
|
||||||
|
Optional path to client-side TLS certificate key to use when connecting to -datasource.url.
|
||||||
|
-datasource.tlsServerName value
|
||||||
|
Optional TLS server name to use for connections to -datasource.url. By default the server name from -datasource.url is used.
|
||||||
-datasource.url string
|
-datasource.url string
|
||||||
Victoria Metrics or VMSelect url. Required parameter. E.g. http://127.0.0.1:8428
|
Victoria Metrics or VMSelect url. Required parameter. E.g. http://127.0.0.1:8428
|
||||||
-evaluationInterval duration
|
-evaluationInterval duration
|
||||||
|
@ -168,6 +178,16 @@ Usage of vmalert:
|
||||||
Address to listen for http connections (default ":8880")
|
Address to listen for http connections (default ":8880")
|
||||||
-metricsAuthKey string
|
-metricsAuthKey string
|
||||||
Auth key for /metrics. It overrides httpAuth settings
|
Auth key for /metrics. It overrides httpAuth settings
|
||||||
|
-notifier.tlsCAFile value
|
||||||
|
Optional path to TLS CA file to use for verifying connections to -notifier.url. By default system CA is used.
|
||||||
|
-notifier.tlsCertFile value
|
||||||
|
Optional path to client-side TLS certificate file to use when connecting to -notifier.url.
|
||||||
|
-notifier.tlsInsecureSkipVerify
|
||||||
|
Whether to skip tls verification when connecting to -notifier.url
|
||||||
|
-notifier.tlsKeyFile value
|
||||||
|
Optional path to client-side TLS certificate key to use when connecting to -notifier.url.
|
||||||
|
-notifier.tlsServerName value
|
||||||
|
Optional TLS server name to use for connections to -notifier.url. By default the server name from -notifier.url is used.
|
||||||
-notifier.url string
|
-notifier.url string
|
||||||
Prometheus alertmanager URL. Required parameter. e.g. http://127.0.0.1:9093
|
Prometheus alertmanager URL. Required parameter. e.g. http://127.0.0.1:9093
|
||||||
-remoteRead.basicAuth.password string
|
-remoteRead.basicAuth.password string
|
||||||
|
@ -176,6 +196,16 @@ Usage of vmalert:
|
||||||
Optional basic auth username for -remoteRead.url
|
Optional basic auth username for -remoteRead.url
|
||||||
-remoteRead.lookback duration
|
-remoteRead.lookback duration
|
||||||
Lookback defines how far to look into past for alerts timeseries. For example, if lookback=1h then range from now() to now()-1h will be scanned. (default 1h0m0s)
|
Lookback defines how far to look into past for alerts timeseries. For example, if lookback=1h then range from now() to now()-1h will be scanned. (default 1h0m0s)
|
||||||
|
-remoteRead.tlsCAFile value
|
||||||
|
Optional path to TLS CA file to use for verifying connections to -remoteRead.url. By default system CA is used.
|
||||||
|
-remoteRead.tlsCertFile value
|
||||||
|
Optional path to client-side TLS certificate file to use when connecting to -remoteRead.url.
|
||||||
|
-remoteRead.tlsInsecureSkipVerify
|
||||||
|
Whether to skip tls verification when connecting to -remoteRead.url
|
||||||
|
-remoteRead.tlsKeyFile value
|
||||||
|
Optional path to client-side TLS certificate key to use when connecting to -remoteRead.url.
|
||||||
|
-remoteRead.tlsServerName value
|
||||||
|
Optional TLS server name to use for connections to -remoteRead.url. By default the server name from -remoteRead.url is used.
|
||||||
-remoteRead.url vmalert
|
-remoteRead.url vmalert
|
||||||
Optional URL to Victoria Metrics or VMSelect that will be used to restore alerts state. This configuration makes sense only if vmalert was configured with `remoteWrite.url` before and has been successfully persisted its state. E.g. http://127.0.0.1:8428
|
Optional URL to Victoria Metrics or VMSelect that will be used to restore alerts state. This configuration makes sense only if vmalert was configured with `remoteWrite.url` before and has been successfully persisted its state. E.g. http://127.0.0.1:8428
|
||||||
-remoteWrite.basicAuth.password string
|
-remoteWrite.basicAuth.password string
|
||||||
|
@ -188,6 +218,16 @@ Usage of vmalert:
|
||||||
Defines defines max number of timeseries to be flushed at once (default 1000)
|
Defines defines max number of timeseries to be flushed at once (default 1000)
|
||||||
-remoteWrite.maxQueueSize int
|
-remoteWrite.maxQueueSize int
|
||||||
Defines the max number of pending datapoints to remote write endpoint (default 100000)
|
Defines the max number of pending datapoints to remote write endpoint (default 100000)
|
||||||
|
-remoteWrite.tlsCAFile value
|
||||||
|
Optional path to TLS CA file to use for verifying connections to -remoteWrite.url. By default system CA is used.
|
||||||
|
-remoteWrite.tlsCertFile value
|
||||||
|
Optional path to client-side TLS certificate file to use when connecting to -remoteWrite.url.
|
||||||
|
-remoteWrite.tlsInsecureSkipVerify
|
||||||
|
Whether to skip tls verification when connecting to -remoteWrite.url
|
||||||
|
-remoteWrite.tlsKeyFile value
|
||||||
|
Optional path to client-side TLS certificate key to use when connecting to -remoteWrite.url.
|
||||||
|
-remoteWrite.tlsServerName value
|
||||||
|
Optional TLS server name to use for connections to -remoteWrite.url. By default the server name from -remoteWrite.url is used.
|
||||||
-remoteWrite.url string
|
-remoteWrite.url string
|
||||||
Optional URL to Victoria Metrics or VMInsert where to persist alerts state in form of timeseries. E.g. http://127.0.0.1:8428
|
Optional URL to Victoria Metrics or VMInsert where to persist alerts state in form of timeseries. E.g. http://127.0.0.1:8428
|
||||||
-rule value
|
-rule value
|
||||||
|
|
|
@ -2,8 +2,11 @@ package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"crypto/tls"
|
||||||
|
"crypto/x509"
|
||||||
"flag"
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"io/ioutil"
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/url"
|
"net/url"
|
||||||
"os"
|
"os"
|
||||||
|
@ -21,6 +24,7 @@ import (
|
||||||
"github.com/VictoriaMetrics/VictoriaMetrics/lib/httpserver"
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/httpserver"
|
||||||
"github.com/VictoriaMetrics/VictoriaMetrics/lib/logger"
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/logger"
|
||||||
"github.com/VictoriaMetrics/VictoriaMetrics/lib/procutil"
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/procutil"
|
||||||
|
"github.com/VictoriaMetrics/fasthttp"
|
||||||
"github.com/VictoriaMetrics/metrics"
|
"github.com/VictoriaMetrics/metrics"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -39,16 +43,30 @@ absolute path to all .yaml files in root.`)
|
||||||
|
|
||||||
datasourceURL = flag.String("datasource.url", "", "Victoria Metrics or VMSelect url. Required parameter."+
|
datasourceURL = flag.String("datasource.url", "", "Victoria Metrics or VMSelect url. Required parameter."+
|
||||||
" E.g. http://127.0.0.1:8428")
|
" E.g. http://127.0.0.1:8428")
|
||||||
basicAuthUsername = flag.String("datasource.basicAuth.username", "", "Optional basic auth username for -datasource.url")
|
basicAuthUsername = flag.String("datasource.basicAuth.username", "", "Optional basic auth username for -datasource.url")
|
||||||
basicAuthPassword = flag.String("datasource.basicAuth.password", "", "Optional basic auth password for -datasource.url")
|
basicAuthPassword = flag.String("datasource.basicAuth.password", "", "Optional basic auth password for -datasource.url")
|
||||||
|
datasourceTLSInsecureSkipVerify = flag.Bool("datasource.tlsInsecureSkipVerify", false, "Whether to skip tls verification when connecting to -datasource.url")
|
||||||
|
datasourceTLSCertFile = flag.String("datasource.tlsCertFile", "", "Optional path to client-side TLS certificate file to use when connecting to -datasource.url")
|
||||||
|
datasourceTLSKeyFile = flag.String("datasource.tlsKeyFile", "", "Optional path to client-side TLS certificate key to use when connecting to -datasource.url")
|
||||||
|
datasourceTLSCAFile = flag.String("datasource.tlsCAFile", "", "Optional path to TLS CA file to use for verifying connections to -datasource.url. "+
|
||||||
|
"By default system CA is used")
|
||||||
|
datasourceTLSServerName = flag.String("datasource.tlsServerName", "", "Optional TLS server name to use for connections to -datasource.url. "+
|
||||||
|
"By default the server name from -datasource.url is used")
|
||||||
|
|
||||||
remoteWriteURL = flag.String("remoteWrite.url", "", "Optional URL to Victoria Metrics or VMInsert where to persist alerts state"+
|
remoteWriteURL = flag.String("remoteWrite.url", "", "Optional URL to Victoria Metrics or VMInsert where to persist alerts state"+
|
||||||
" and recording rules results in form of timeseries. E.g. http://127.0.0.1:8428")
|
" and recording rules results in form of timeseries. E.g. http://127.0.0.1:8428")
|
||||||
remoteWriteUsername = flag.String("remoteWrite.basicAuth.username", "", "Optional basic auth username for -remoteWrite.url")
|
remoteWriteUsername = flag.String("remoteWrite.basicAuth.username", "", "Optional basic auth username for -remoteWrite.url")
|
||||||
remoteWritePassword = flag.String("remoteWrite.basicAuth.password", "", "Optional basic auth password for -remoteWrite.url")
|
remoteWritePassword = flag.String("remoteWrite.basicAuth.password", "", "Optional basic auth password for -remoteWrite.url")
|
||||||
remoteWriteMaxQueueSize = flag.Int("remoteWrite.maxQueueSize", 1e5, "Defines the max number of pending datapoints to remote write endpoint")
|
remoteWriteMaxQueueSize = flag.Int("remoteWrite.maxQueueSize", 1e5, "Defines the max number of pending datapoints to remote write endpoint")
|
||||||
remoteWriteMaxBatchSize = flag.Int("remoteWrite.maxBatchSize", 1e3, "Defines defines max number of timeseries to be flushed at once")
|
remoteWriteMaxBatchSize = flag.Int("remoteWrite.maxBatchSize", 1e3, "Defines defines max number of timeseries to be flushed at once")
|
||||||
remoteWriteConcurrency = flag.Int("remoteWrite.concurrency", 1, "Defines number of writers for concurrent writing into remote storage")
|
remoteWriteConcurrency = flag.Int("remoteWrite.concurrency", 1, "Defines number of writers for concurrent writing into remote storage")
|
||||||
|
remoteWriteTLSInsecureSkipVerify = flag.Bool("remoteWrite.tlsInsecureSkipVerify", false, "Whether to skip tls verification when connecting to -remoteWrite.url")
|
||||||
|
remoteWriteTLSCertFile = flag.String("remoteWrite.tlsCertFile", "", "Optional path to client-side TLS certificate file to use when connecting to -remoteWrite.url")
|
||||||
|
remoteWriteTLSKeyFile = flag.String("remoteWrite.tlsKeyFile", "", "Optional path to client-side TLS certificate key to use when connecting to -remoteWrite.url")
|
||||||
|
remoteWriteTLSCAFile = flag.String("remoteWrite.tlsCAFile", "", "Optional path to TLS CA file to use for verifying connections to -remoteWrite.url. "+
|
||||||
|
"By default system CA is used")
|
||||||
|
remoteWriteTLSServerName = flag.String("remoteWrite.tlsServerName", "", "Optional TLS server name to use for connections to -remoteWrite.url. "+
|
||||||
|
"By default the server name from -remoteWrite.url is used")
|
||||||
|
|
||||||
remoteReadURL = flag.String("remoteRead.url", "", "Optional URL to Victoria Metrics or VMSelect that will be used to restore alerts"+
|
remoteReadURL = flag.String("remoteRead.url", "", "Optional URL to Victoria Metrics or VMSelect that will be used to restore alerts"+
|
||||||
" state. This configuration makes sense only if `vmalert` was configured with `remoteWrite.url` before and has been successfully persisted its state."+
|
" state. This configuration makes sense only if `vmalert` was configured with `remoteWrite.url` before and has been successfully persisted its state."+
|
||||||
|
@ -57,9 +75,23 @@ absolute path to all .yaml files in root.`)
|
||||||
remoteReadPassword = flag.String("remoteRead.basicAuth.password", "", "Optional basic auth password for -remoteRead.url")
|
remoteReadPassword = flag.String("remoteRead.basicAuth.password", "", "Optional basic auth password for -remoteRead.url")
|
||||||
remoteReadLookBack = flag.Duration("remoteRead.lookback", time.Hour, "Lookback defines how far to look into past for alerts timeseries."+
|
remoteReadLookBack = flag.Duration("remoteRead.lookback", time.Hour, "Lookback defines how far to look into past for alerts timeseries."+
|
||||||
" For example, if lookback=1h then range from now() to now()-1h will be scanned.")
|
" For example, if lookback=1h then range from now() to now()-1h will be scanned.")
|
||||||
|
remoteReadTLSInsecureSkipVerify = flag.Bool("remoteRead.tlsInsecureSkipVerify", false, "Whether to skip tls verification when connecting to -remoteRead.url")
|
||||||
|
remoteReadTLSCertFile = flag.String("remoteRead.tlsCertFile", "", "Optional path to client-side TLS certificate file to use when connecting to -remoteRead.url")
|
||||||
|
remoteReadTLSKeyFile = flag.String("remoteRead.tlsKeyFile", "", "Optional path to client-side TLS certificate key to use when connecting to -remoteRead.url")
|
||||||
|
remoteReadTLSCAFile = flag.String("remoteRead.tlsCAFile", "", "Optional path to TLS CA file to use for verifying connections to -remoteRead.url. "+
|
||||||
|
"By default system CA is used")
|
||||||
|
remoteReadTLSServerName = flag.String("remoteRead.tlsServerName", "", "Optional TLS server name to use for connections to -remoteRead.url. "+
|
||||||
|
"By default the server name from -remoteRead.url is used")
|
||||||
|
|
||||||
evaluationInterval = flag.Duration("evaluationInterval", time.Minute, "How often to evaluate the rules")
|
evaluationInterval = flag.Duration("evaluationInterval", time.Minute, "How often to evaluate the rules")
|
||||||
notifierURL = flag.String("notifier.url", "", "Prometheus alertmanager URL. Required parameter. e.g. http://127.0.0.1:9093")
|
notifierURL = flag.String("notifier.url", "", "Prometheus alertmanager URL. Required parameter. e.g. http://127.0.0.1:9093")
|
||||||
|
notifierTLSInsecureSkipVerify = flag.Bool("notifier.tlsInsecureSkipVerify", false, "Whether to skip tls verification when connecting to -notifier.url")
|
||||||
|
notifierTLSCertFile = flag.String("notifier.tlsCertFile", "", "Optional path to client-side TLS certificate file to use when connecting to -notifier.url")
|
||||||
|
notifierTLSKeyFile = flag.String("notifier.tlsKeyFile", "", "Optional path to client-side TLS certificate key to use when connecting to -notifier.url")
|
||||||
|
notifierTLSCAFile = flag.String("notifier.tlsCAFile", "", "Optional path to TLS CA file to use for verifying connections to -notifier.url. "+
|
||||||
|
"By default system CA is used")
|
||||||
|
notifierTLSServerName = flag.String("notifier.tlsServerName", "", "Optional TLS server name to use for connections to -notifier.url. "+
|
||||||
|
"By default the server name from -notifier.url is used")
|
||||||
externalURL = flag.String("external.url", "", "External URL is used as alert's source for sent alerts to the notifier")
|
externalURL = flag.String("external.url", "", "External URL is used as alert's source for sent alerts to the notifier")
|
||||||
externalAlertSource = flag.String("external.alert.source", "", `External Alert Source allows to override the Source link for alerts sent to AlertManager for cases where you want to build a custom link to Grafana, Prometheus or any other service.
|
externalAlertSource = flag.String("external.alert.source", "", `External Alert Source allows to override the Source link for alerts sent to AlertManager for cases where you want to build a custom link to Grafana, Prometheus or any other service.
|
||||||
eg. 'explore?orgId=1&left=[\"now-1h\",\"now\",\"VictoriaMetrics\",{\"expr\": \"{{$expr|quotesEscape|pathEscape}}\"},{\"mode\":\"Metrics\"},{\"ui\":[true,true,true,\"none\"]}]'.If empty '/api/v1/:groupID/alertID/status' is used`)
|
eg. 'explore?orgId=1&left=[\"now-1h\",\"now\",\"VictoriaMetrics\",{\"expr\": \"{{$expr|quotesEscape|pathEscape}}\"},{\"mode\":\"Metrics\"},{\"ui\":[true,true,true,\"none\"]}]'.If empty '/api/v1/:groupID/alertID/status' is used`)
|
||||||
|
@ -84,12 +116,27 @@ func main() {
|
||||||
logger.Fatalf("URL generator error: %s", err)
|
logger.Fatalf("URL generator error: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
dst, err := getTransport(datasourceURL, datasourceTLSCertFile, datasourceTLSKeyFile, datasourceTLSCAFile, datasourceTLSServerName, datasourceTLSInsecureSkipVerify)
|
||||||
|
if err != nil {
|
||||||
|
logger.Fatalf("cannot create datasource transport: %s", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
nt, err := getTransport(notifierURL, notifierTLSCertFile, notifierTLSKeyFile, notifierTLSCAFile, notifierTLSServerName, notifierTLSInsecureSkipVerify)
|
||||||
|
if err != nil {
|
||||||
|
logger.Fatalf("cannot create notifier transport: %s", err)
|
||||||
|
}
|
||||||
|
|
||||||
manager := &manager{
|
manager := &manager{
|
||||||
groups: make(map[uint64]*Group),
|
groups: make(map[uint64]*Group),
|
||||||
storage: datasource.NewVMStorage(*datasourceURL, *basicAuthUsername, *basicAuthPassword, &http.Client{}),
|
storage: datasource.NewVMStorage(*datasourceURL, *basicAuthUsername, *basicAuthPassword, &http.Client{Transport: dst}),
|
||||||
notifier: notifier.NewAlertManager(*notifierURL, aug, &http.Client{}),
|
notifier: notifier.NewAlertManager(*notifierURL, aug, &http.Client{Transport: nt}),
|
||||||
}
|
}
|
||||||
if *remoteWriteURL != "" {
|
if *remoteWriteURL != "" {
|
||||||
|
t, err := getTransport(remoteWriteURL, remoteWriteTLSCertFile, remoteWriteTLSKeyFile, remoteWriteTLSCAFile, remoteWriteTLSServerName, remoteWriteTLSInsecureSkipVerify)
|
||||||
|
if err != nil {
|
||||||
|
logger.Fatalf("cannot create remoteWrite transport: %s", err)
|
||||||
|
}
|
||||||
|
|
||||||
c, err := remotewrite.NewClient(ctx, remotewrite.Config{
|
c, err := remotewrite.NewClient(ctx, remotewrite.Config{
|
||||||
Addr: *remoteWriteURL,
|
Addr: *remoteWriteURL,
|
||||||
Concurrency: *remoteWriteConcurrency,
|
Concurrency: *remoteWriteConcurrency,
|
||||||
|
@ -98,14 +145,21 @@ func main() {
|
||||||
FlushInterval: *evaluationInterval,
|
FlushInterval: *evaluationInterval,
|
||||||
BasicAuthUser: *remoteWriteUsername,
|
BasicAuthUser: *remoteWriteUsername,
|
||||||
BasicAuthPass: *remoteWritePassword,
|
BasicAuthPass: *remoteWritePassword,
|
||||||
|
Transport: t,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logger.Fatalf("failed to init remotewrite client: %s", err)
|
logger.Fatalf("failed to init remotewrite client: %s", err)
|
||||||
}
|
}
|
||||||
manager.rw = c
|
manager.rw = c
|
||||||
}
|
}
|
||||||
|
|
||||||
if *remoteReadURL != "" {
|
if *remoteReadURL != "" {
|
||||||
manager.rr = datasource.NewVMStorage(*remoteReadURL, *remoteReadUsername, *remoteReadPassword, &http.Client{})
|
t, err := getTransport(remoteReadURL, remoteReadTLSCertFile, remoteReadTLSKeyFile, remoteReadTLSCAFile, remoteReadTLSServerName, remoteReadTLSInsecureSkipVerify)
|
||||||
|
if err != nil {
|
||||||
|
logger.Fatalf("cannot create remoteRead transport: %s", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
manager.rr = datasource.NewVMStorage(*remoteReadURL, *remoteReadUsername, *remoteReadPassword, &http.Client{Transport: t})
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := manager.start(ctx, *rulePath, *validateTemplates, *validateExpressions); err != nil {
|
if err := manager.start(ctx, *rulePath, *validateTemplates, *validateExpressions); err != nil {
|
||||||
|
@ -196,6 +250,57 @@ func getAlertURLGenerator(externalURL *url.URL, externalAlertSource string, vali
|
||||||
}, nil
|
}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func getTLSConfig(certFile, keyFile, CAFile, serverName *string, insecureSkipVerify *bool) (*tls.Config, error) {
|
||||||
|
var certs []tls.Certificate
|
||||||
|
if *certFile != "" {
|
||||||
|
cert, err := tls.LoadX509KeyPair(*certFile, *keyFile)
|
||||||
|
if err != nil {
|
||||||
|
return nil, fmt.Errorf("cannot load TLS certificate from `cert_file`=%q, `key_file`=%q: %s", *certFile, *keyFile, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
certs = []tls.Certificate{cert}
|
||||||
|
}
|
||||||
|
|
||||||
|
var rootCAs *x509.CertPool
|
||||||
|
if *CAFile != "" {
|
||||||
|
pem, err := ioutil.ReadFile(*CAFile)
|
||||||
|
if err != nil {
|
||||||
|
return nil, fmt.Errorf("cannot read `ca_file` %q: %s", *CAFile, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
rootCAs = x509.NewCertPool()
|
||||||
|
if !rootCAs.AppendCertsFromPEM(pem) {
|
||||||
|
return nil, fmt.Errorf("cannot parse data from `ca_file` %q", *CAFile)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return &tls.Config{
|
||||||
|
Certificates: certs,
|
||||||
|
InsecureSkipVerify: *insecureSkipVerify,
|
||||||
|
RootCAs: rootCAs,
|
||||||
|
ServerName: *serverName,
|
||||||
|
}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func getTransport(URL, certFile, keyFile, CAFile, serverName *string, insecureSkipVerify *bool) (*http.Transport, error) {
|
||||||
|
var u fasthttp.URI
|
||||||
|
u.Update(*URL)
|
||||||
|
|
||||||
|
var t *http.Transport
|
||||||
|
if string(u.Scheme()) == "https" {
|
||||||
|
t = http.DefaultTransport.(*http.Transport).Clone()
|
||||||
|
|
||||||
|
tlsCfg, err := getTLSConfig(certFile, keyFile, CAFile, serverName, insecureSkipVerify)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
t.TLSClientConfig = tlsCfg
|
||||||
|
}
|
||||||
|
|
||||||
|
return t, nil
|
||||||
|
}
|
||||||
|
|
||||||
func checkFlags() {
|
func checkFlags() {
|
||||||
if *notifierURL == "" {
|
if *notifierURL == "" {
|
||||||
flag.PrintDefaults()
|
flag.PrintDefaults()
|
||||||
|
|
|
@ -51,3 +51,55 @@ func TestGetAlertURLGenerator(t *testing.T) {
|
||||||
t.Errorf("unexpected url want %s, got %s", exp, fn(testAlert))
|
t.Errorf("unexpected url want %s, got %s", exp, fn(testAlert))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestGetTLSConfig(t *testing.T) {
|
||||||
|
var certFile, keyFile, CAFile, serverName string
|
||||||
|
var insecureSkipVerify bool
|
||||||
|
serverName = "test"
|
||||||
|
insecureSkipVerify = true
|
||||||
|
tlsCfg, err := getTLSConfig(&certFile, &keyFile, &CAFile, &serverName, &insecureSkipVerify)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("unexpected error %s", err)
|
||||||
|
}
|
||||||
|
if tlsCfg == nil {
|
||||||
|
t.Errorf("expected tlsConfig to be set, got nil")
|
||||||
|
}
|
||||||
|
if tlsCfg.ServerName != serverName {
|
||||||
|
t.Errorf("unexpected ServerName, want %s, got %s", serverName, tlsCfg.ServerName)
|
||||||
|
}
|
||||||
|
if tlsCfg.InsecureSkipVerify != insecureSkipVerify {
|
||||||
|
t.Errorf("unexpected InsecureSkipVerify, want %v, got %v", insecureSkipVerify, tlsCfg.InsecureSkipVerify)
|
||||||
|
}
|
||||||
|
certFile = "/path/to/nonexisting/cert/file"
|
||||||
|
_, err = getTLSConfig(&certFile, &keyFile, &CAFile, &serverName, &insecureSkipVerify)
|
||||||
|
if err == nil {
|
||||||
|
t.Errorf("expected keypair error, got nil")
|
||||||
|
}
|
||||||
|
certFile = ""
|
||||||
|
CAFile = "/path/to/nonexisting/cert/file"
|
||||||
|
_, err = getTLSConfig(&certFile, &keyFile, &CAFile, &serverName, &insecureSkipVerify)
|
||||||
|
if err == nil {
|
||||||
|
t.Errorf("expected read error, got nil")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestGetTransport(t *testing.T) {
|
||||||
|
var certFile, keyFile, CAFile, serverName string
|
||||||
|
var insecureSkipVerify bool
|
||||||
|
URL := "http://victoriametrics.com"
|
||||||
|
tr, err := getTransport(&URL, &certFile, &keyFile, &CAFile, &serverName, &insecureSkipVerify)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("unexpected error %s", err)
|
||||||
|
}
|
||||||
|
if tr != nil {
|
||||||
|
t.Errorf("expected Transport to be nil, got %v", tr)
|
||||||
|
}
|
||||||
|
URL = "https://victoriametrics.com"
|
||||||
|
tr, err = getTransport(&URL, &certFile, &keyFile, &CAFile, &serverName, &insecureSkipVerify)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("unexpected error %s", err)
|
||||||
|
}
|
||||||
|
if tr.TLSClientConfig == nil {
|
||||||
|
t.Errorf("expected TLSClientConfig to be set, got nil")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -53,6 +53,8 @@ type Config struct {
|
||||||
// WriteTimeout defines timeout for HTTP write request
|
// WriteTimeout defines timeout for HTTP write request
|
||||||
// to remote storage
|
// to remote storage
|
||||||
WriteTimeout time.Duration
|
WriteTimeout time.Duration
|
||||||
|
// Transport will be used by the underlying http.Client
|
||||||
|
Transport *http.Transport
|
||||||
}
|
}
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
@ -85,7 +87,8 @@ func NewClient(ctx context.Context, cfg Config) (*Client, error) {
|
||||||
}
|
}
|
||||||
c := &Client{
|
c := &Client{
|
||||||
c: &http.Client{
|
c: &http.Client{
|
||||||
Timeout: cfg.WriteTimeout,
|
Timeout: cfg.WriteTimeout,
|
||||||
|
Transport: cfg.Transport,
|
||||||
},
|
},
|
||||||
addr: strings.TrimSuffix(cfg.Addr, "/") + writePath,
|
addr: strings.TrimSuffix(cfg.Addr, "/") + writePath,
|
||||||
baUser: cfg.BasicAuthUser,
|
baUser: cfg.BasicAuthUser,
|
||||||
|
|
Loading…
Reference in a new issue