Skip to content
Snippets Groups Projects
Commit 75580818 authored by Anthony Arnaud's avatar Anthony Arnaud Committed by Cameron Sparr
Browse files

Output openTSDB HTTPS with basic auth (#1913)

parent 6e241611
No related branches found
No related tags found
No related merge requests found
...@@ -90,7 +90,7 @@ func (o *OpenTSDB) Write(metrics []telegraf.Metric) error { ...@@ -90,7 +90,7 @@ func (o *OpenTSDB) Write(metrics []telegraf.Metric) error {
if u.Scheme == "" || u.Scheme == "tcp" { if u.Scheme == "" || u.Scheme == "tcp" {
return o.WriteTelnet(metrics, u) return o.WriteTelnet(metrics, u)
} else if u.Scheme == "http" { } else if u.Scheme == "http" || u.Scheme == "https" {
return o.WriteHttp(metrics, u) return o.WriteHttp(metrics, u)
} else { } else {
return fmt.Errorf("Unknown scheme in host parameter.") return fmt.Errorf("Unknown scheme in host parameter.")
...@@ -101,6 +101,8 @@ func (o *OpenTSDB) WriteHttp(metrics []telegraf.Metric, u *url.URL) error { ...@@ -101,6 +101,8 @@ func (o *OpenTSDB) WriteHttp(metrics []telegraf.Metric, u *url.URL) error {
http := openTSDBHttp{ http := openTSDBHttp{
Host: u.Host, Host: u.Host,
Port: o.Port, Port: o.Port,
Scheme: u.Scheme,
User: u.User,
BatchSize: o.HttpBatchSize, BatchSize: o.HttpBatchSize,
Debug: o.Debug, Debug: o.Debug,
} }
......
...@@ -23,6 +23,8 @@ type HttpMetric struct { ...@@ -23,6 +23,8 @@ type HttpMetric struct {
type openTSDBHttp struct { type openTSDBHttp struct {
Host string Host string
Port int Port int
Scheme string
User *url.Userinfo
BatchSize int BatchSize int
Debug bool Debug bool
...@@ -118,7 +120,8 @@ func (o *openTSDBHttp) flush() error { ...@@ -118,7 +120,8 @@ func (o *openTSDBHttp) flush() error {
o.body.close() o.body.close()
u := url.URL{ u := url.URL{
Scheme: "http", Scheme: o.Scheme,
User: o.User,
Host: fmt.Sprintf("%s:%d", o.Host, o.Port), Host: fmt.Sprintf("%s:%d", o.Host, o.Port),
Path: "/api/put", Path: "/api/put",
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment