mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 20:24:18 -06:00
ba9d5540b8
* Introduce response_limit for datasource responses * Fix lint * Fix tests * Add case where limit <= 0 - added parametrized tests * Add max_bytes_reader.go * Use new httpclient.MaxBytesReader instead of net/http one * Fixes according to reviewer's comments * Add tests for max_bytes_reader * Add small piece in configuration.md * Further fixes according to reviewer's comments * Fix linting - fix test
26 lines
1.2 KiB
Go
26 lines
1.2 KiB
Go
package setting
|
|
|
|
import "gopkg.in/ini.v1"
|
|
|
|
func readDataProxySettings(iniFile *ini.File, cfg *Cfg) error {
|
|
dataproxy := iniFile.Section("dataproxy")
|
|
cfg.SendUserHeader = dataproxy.Key("send_user_header").MustBool(false)
|
|
cfg.DataProxyLogging = dataproxy.Key("logging").MustBool(false)
|
|
cfg.DataProxyTimeout = dataproxy.Key("timeout").MustInt(10)
|
|
cfg.DataProxyDialTimeout = dataproxy.Key("dialTimeout").MustInt(30)
|
|
cfg.DataProxyKeepAlive = dataproxy.Key("keep_alive_seconds").MustInt(30)
|
|
cfg.DataProxyTLSHandshakeTimeout = dataproxy.Key("tls_handshake_timeout_seconds").MustInt(10)
|
|
cfg.DataProxyExpectContinueTimeout = dataproxy.Key("expect_continue_timeout_seconds").MustInt(1)
|
|
cfg.DataProxyMaxConnsPerHost = dataproxy.Key("max_conns_per_host").MustInt(0)
|
|
cfg.DataProxyMaxIdleConns = dataproxy.Key("max_idle_connections").MustInt()
|
|
cfg.DataProxyIdleConnTimeout = dataproxy.Key("idle_conn_timeout_seconds").MustInt(90)
|
|
cfg.ResponseLimit = dataproxy.Key("response_limit").MustInt64(0)
|
|
|
|
if val, err := dataproxy.Key("max_idle_connections_per_host").Int(); err == nil {
|
|
cfg.Logger.Warn("[Deprecated] the configuration setting 'max_idle_connections_per_host' is deprecated, please use 'max_idle_connections' instead")
|
|
cfg.DataProxyMaxIdleConns = val
|
|
}
|
|
|
|
return nil
|
|
}
|