mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 07:34:04 -08:00
3929582892
Instead of externally handling timeouts when scraping a target, we set timeouts on the HTTP connection. This ensures that we don't leak goroutines on timeouts. [fixes #181]
31 lines
616 B
Go
31 lines
616 B
Go
package retrieval
|
|
|
|
import (
|
|
"net"
|
|
"net/http"
|
|
"time"
|
|
)
|
|
|
|
// NewDeadlineClient returns a new http.Client which will time out long running
|
|
// requests.
|
|
func NewDeadlineClient(timeout time.Duration) http.Client {
|
|
return http.Client{
|
|
Transport: &http.Transport{
|
|
// We need to disable keepalive, becasue we set a deadline on the
|
|
// underlying connection.
|
|
DisableKeepAlives: true,
|
|
Dial: func(netw, addr string) (c net.Conn, err error) {
|
|
start := time.Now()
|
|
|
|
c, err = net.DialTimeout(netw, addr, timeout)
|
|
|
|
if err == nil {
|
|
c.SetDeadline(start.Add(timeout))
|
|
}
|
|
|
|
return
|
|
},
|
|
},
|
|
}
|
|
}
|