diff --git a/pkg/simple/client/prometheus/prometheus.go b/pkg/simple/client/prometheus/prometheus.go index 6584e77b9..5309caa30 100644 --- a/pkg/simple/client/prometheus/prometheus.go +++ b/pkg/simple/client/prometheus/prometheus.go @@ -36,7 +36,7 @@ type PrometheusClient struct { func NewPrometheusClient(options *PrometheusOptions) (*PrometheusClient, error) { return &PrometheusClient{ client: &http.Client{ - Timeout: time.Duration(3) * time.Second, + Timeout: 10 * time.Second, }, endpoint: options.Endpoint, secondaryEndpoint: options.SecondaryEndpoint,