feat(exec/temp):Log hostname in polling script
authorSteven Baltakatei Sandoval <baltakatei@gmail.com>
Tue, 27 Oct 2020 18:58:29 +0000 (18:58 +0000)
committerSteven Baltakatei Sandoval <baltakatei@gmail.com>
Tue, 27 Oct 2020 18:58:29 +0000 (18:58 +0000)
exec/temperature/DS18B20..temp_poll.py

index 21a727b00112ff634819551f37d30c94c2e80054..f15926cba44ed727d8b3120436e079b43b6ab74c 100755 (executable)
@@ -4,6 +4,7 @@ import os
 import glob
 import time
 from time import strftime
+import socket
 
 os.system('modprobe w1-gpio')
 os.system('modprobe w1-therm')
@@ -36,5 +37,6 @@ while True:
     nowTimeIso8601 = strftime("%Y%m%dT%H%M%S%z")
     nowTimeUE = strftime("%s")
     nowTemp = read_temp()
-    print(str(nowTimeIso8601) + ',' + str(nowTimeUE) + ',' + str(nowTemp))
+    myHostname = socket.gethostname()
+    print(str(nowTimeIso8601) + ',' + str(nowTimeUE) + ',' + str(myHostname) + ',' + str(nowTemp))
     time.sleep(1)