Skip to content

Commit c56b95d

Browse files
authored
feat: add opt-in support for ProxyFroomEnvironment in logcli (#11742) (#14950)
1 parent 9fb2f38 commit c56b95d

File tree

2 files changed

+21
-15
lines changed

2 files changed

+21
-15
lines changed

‎cmd/logcli/main.go

+1
Original file line numberDiff line numberDiff line change
@@ -484,6 +484,7 @@ func newQueryClient(app *kingpin.Application) client.Client {
484484
app.Flag("auth-header", "The authorization header used. Can also be set using LOKI_AUTH_HEADER env var.").Default("Authorization").Envar("LOKI_AUTH_HEADER").StringVar(&client.AuthHeader)
485485
app.Flag("proxy-url", "The http or https proxy to use when making requests. Can also be set using LOKI_HTTP_PROXY_URL env var.").Default("").Envar("LOKI_HTTP_PROXY_URL").StringVar(&client.ProxyURL)
486486
app.Flag("compress", "Request that Loki compress returned data in transit. Can also be set using LOKI_HTTP_COMPRESSION env var.").Default("false").Envar("LOKI_HTTP_COMPRESSION").BoolVar(&client.Compression)
487+
app.Flag("envproxy", "Use ProxyFromEnvironment to use net/http ProxyFromEnvironment configuration, eg HTTP_PROXY").Default("false").Envar("LOKI_ENV_PROXY").BoolVar(&client.EnvironmentProxy)
487488

488489
return client
489490
}

‎pkg/logcli/client/client.go

+20-15
Original file line numberDiff line numberDiff line change
@@ -74,21 +74,22 @@ type BackoffConfig struct {
7474

7575
// Client contains fields necessary to query a Loki instance
7676
type DefaultClient struct {
77-
TLSConfig config.TLSConfig
78-
Username string
79-
Password string
80-
Address string
81-
OrgID string
82-
Tripperware Tripperware
83-
BearerToken string
84-
BearerTokenFile string
85-
Retries int
86-
QueryTags string
87-
NoCache bool
88-
AuthHeader string
89-
ProxyURL string
90-
BackoffConfig BackoffConfig
91-
Compression bool
77+
TLSConfig config.TLSConfig
78+
Username string
79+
Password string
80+
Address string
81+
OrgID string
82+
Tripperware Tripperware
83+
BearerToken string
84+
BearerTokenFile string
85+
Retries int
86+
QueryTags string
87+
NoCache bool
88+
AuthHeader string
89+
ProxyURL string
90+
BackoffConfig BackoffConfig
91+
Compression bool
92+
EnvironmentProxy bool
9293
}
9394

9495
// Query uses the /api/v1/query endpoint to execute an instant query
@@ -306,6 +307,10 @@ func (c *DefaultClient) doRequest(path, query string, quiet bool, out interface{
306307
TLSConfig: c.TLSConfig,
307308
}
308309

310+
if c.EnvironmentProxy {
311+
clientConfig.ProxyFromEnvironment = true
312+
}
313+
309314
if c.ProxyURL != "" {
310315
prox, err := url.Parse(c.ProxyURL)
311316
if err != nil {

0 commit comments

Comments
 (0)