diff --git a/README.md b/README.md
index 37a2de36..0ebe099f 100644
--- a/README.md
+++ b/README.md
@@ -110,7 +110,7 @@ sites side-by-side. So easy! This screenshot barely does it justice.

## Copyright & License
-
+
- Copyright © 2016 Garrett Bjerkhoel.
- Copyright © 2018-2019 David Newhall II.
diff --git a/examples/MANUAL.md b/examples/MANUAL.md
index 75188ec4..8df5e733 100644
--- a/examples/MANUAL.md
+++ b/examples/MANUAL.md
@@ -107,6 +107,10 @@ is provided so the application can be easily adapted to any environment.
measurements at /metrics for collection by prometheus. Enabling this
mode disables InfluxDB usage entirely.
+ * Value: both
+ Setting the mode to "both" will cause the InfluxDB poller routine to run
+ along with the Prometheus exporter. You can run both at the same time.
+
http_listen default: 0.0.0.0:9130
This option controls the IP and port the http listener uses when the
mode is set to prometheus. This setting has no effect when other modes
@@ -143,13 +147,18 @@ is provided so the application can be easily adapted to any environment.
Password used to authenticate with UniFi controller. This can also be
set in an environment variable instead of a configuration file.
- collect_ids default: false
+ save_ids default: false
Setting this parameter to true will enable collection of Intrusion
Detection System data. IDS and IPS are the same data set. This is off
by default because most controllers do not have this enabled. It also
creates a lot of new metrics from controllers with a lot of IDS entries.
IDS data does not contain metrics, so this doesn't work with Prometheus.
+ save_sites
+ Setting this parameter to false will disable saving Network Site data.
+ This data populates the Sites dashboard, and this setting affects influx
+ and prometheus.
+
reauthenticate default: false
Setting this parameter to true will make UniFi Poller send a new login
request on every interval. This generates a new cookie. Some controller
diff --git a/examples/up.conf.example b/examples/up.conf.example
index 15454dad..a403f5b7 100644
--- a/examples/up.conf.example
+++ b/examples/up.conf.example
@@ -25,7 +25,7 @@ quiet = false
# an invalid mode will also result in "influx". In this default mode the application
# runs as a daemon and polls the controller at the configured interval.
#
-# There are two other options at this time: "influxlambda" and "prometheus"
+# Other options: "influxlambda", "prometheus", "both"
#
# Mode "influxlambda" makes the application exit after collecting and reporting metrics
# to InfluxDB one time. This mode requires an external process like an AWS Lambda
@@ -33,6 +33,9 @@ quiet = false
#
# Mode "prometheus" opens an HTTP server on port 9130 and exports the metrics at
# /metrics for polling collection by a prometheus server. This disables influxdb.
+#
+# Mode "both" runs the Prometheus HTTP server and InfluxDB poller interval at
+# the same time.
mode = "influx"
# This controls on which ip and port /metrics is exported when mode is "prometheus".