jambonz / jambonz-infrastructure

packer and cloudformation templates for creating EC2-based jambonz deployments
23 stars 29 forks source link

cloudformation cluster setup is missing information for connecting to the monitoring server #51

Open Megamuch opened 1 year ago

Megamuch commented 1 year ago

currently the config for /etc/telegraf/telegraf.conf on the monitoring server is referencing https://influxdb:8086 as the endpoint for influx data.

this is incorrect and should be changed to either localhost /127.0.0.1 or the appropriate hostname of the machine. the current cloud formations do not have this information.

[[outputs.influxdb]]
  urls = ["http://influxdb:8086/"] # required
  database = "telegraf" # required
  retention_policy = "autogen"
  write_consistency = "any"
  timeout = "5s"
  namedrop = ["hep*"]

[[outputs.influxdb]]
  urls = ["http://influxdb:8086/"] # required
  database = "homer" # required
  retention_policy = ""
  write_consistency = "any"
  timeout = "5s"
  namepass = ["hep*"]