Set content-type charset in influxdb output and allow it be overridden (#3593)

(cherry picked from commit 4f7afb8cb5)
This commit is contained in:
Daniel Nelson 2017-12-28 16:22:19 -08:00 committed by Daniel Nelson
parent 223bbf0df7
commit 83faea7a31
No known key found for this signature in database
GPG Key ID: CAAD59C9444F6155
1 changed files with 2 additions and 1 deletions

View File

@ -211,11 +211,12 @@ func (c *httpClient) makeRequest(uri string, body io.Reader) (*http.Request, err
return nil, err
}
req.Header.Set("Content-Type", "text/plain; charset=utf-8")
for header, value := range c.config.HTTPHeaders {
req.Header.Set(header, value)
}
req.Header.Set("Content-Type", "text/plain")
req.Header.Set("User-Agent", c.config.UserAgent)
if c.config.Username != "" && c.config.Password != "" {
req.SetBasicAuth(c.config.Username, c.config.Password)