Add SSL to InfluxDB sink

This commit is contained in:
Thomas Roehl
2021-06-30 16:56:47 +02:00
parent 34585d88df
commit 586c6c12ac
2 changed files with 12 additions and 2 deletions

View File

@@ -12,6 +12,7 @@ type SinkConfig struct {
Password string `json:"password"`
Organization string `json:"organization"`
Type string `json:"type"`
SSL bool `json:"ssl"`
}
type Sink struct {
@@ -21,6 +22,7 @@ type Sink struct {
password string
database string
organization string
ssl bool
}
type SinkFuncs interface {