add support for specifying scheme for influxdb endpoint url (http vs https).

fixes #258
This commit is contained in:
Jason Kulatunga
2022-05-23 09:34:16 -07:00
parent 6f283fd736
commit 168ca802d1
4 changed files with 12 additions and 1 deletions
+1
View File
@@ -39,6 +39,7 @@ func (c *configuration) Init() error {
c.SetDefault("notify.urls", []string{})
c.SetDefault("web.influxdb.scheme", "http")
c.SetDefault("web.influxdb.host", "localhost")
c.SetDefault("web.influxdb.port", "8086")
c.SetDefault("web.influxdb.org", "scrutiny")