Skip to content

Commit

Permalink
fix: Change default Influxdb config settings to avoid startup warning
Browse files Browse the repository at this point in the history
Default settings would cause config file verification to fail
  • Loading branch information
mountaindude committed Nov 25, 2023
1 parent e41da4c commit 7e9ef40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config/production_template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -295,8 +295,8 @@ Butler-SOS:
influxdbConfig:
enable: true
# Items below are mandatory if influxdbConfig.enable=true
hostIP: <IP or FQDN of Influxdb server>
hostPort: <Port where Influxdb is listening> # Optional. Default value=8086
hostIP: influxdb.mycompany.com # IP or FQDN of Influxdb server
hostPort: 8086 # Port where Influxdb is listening. Default=8086
auth:
enable: false # Does influxdb instance require authentication (true/false)?
username: <username> # Username for Influxdb authentication. Mandatory if auth.enable=true
Expand Down

0 comments on commit 7e9ef40

Please sign in to comment.