aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBlaise Thompson <blaise@untzag.com>2020-10-30 13:36:56 -0500
committerBlaise Thompson <blaise@untzag.com>2020-10-30 13:36:56 -0500
commit78279423aee348977163064898ed2c9658ecf840 (patch)
tree42e5c45af4c379c5aad20cbe20cdae83cda6e97c
parentb2a98221fc43872a00fabe2f61508976c68eee51 (diff)
correct network name
-rw-r--r--write-influx/write_influx.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/write-influx/write_influx.py b/write-influx/write_influx.py
index 3313203..78e4da5 100644
--- a/write-influx/write_influx.py
+++ b/write-influx/write_influx.py
@@ -75,7 +75,7 @@ def write_point(measurement, tags, fields):
json["tags"] = tags
json["fields"] = fields
try:
- influx_client.write_points([json], retention_policy="two-years")
+ influx_client.write_points([json])
except Exception as e:
print(e)
print(json)
@@ -86,7 +86,7 @@ client = mqtt.Client()
client.on_connect = on_connect
client.on_message = on_message
-client.connect("mqtt", 1883, 60)
+client.connect("broker", 1883, 60)
# Blocking call that processes network traffic, dispatches callbacks and
# handles reconnecting.