From ec45bb14c3185a40bbc56965bf0de977a34fdae1 Mon Sep 17 00:00:00 2001 From: Lukasz Koniecki Date: Fri, 12 May 2017 09:17:58 +0200 Subject: [PATCH] Added missing module import --- custom-device-metrics-Raspberry-example/rasp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom-device-metrics-Raspberry-example/rasp.py b/custom-device-metrics-Raspberry-example/rasp.py index 1c36444..a01928b 100644 --- a/custom-device-metrics-Raspberry-example/rasp.py +++ b/custom-device-metrics-Raspberry-example/rasp.py @@ -1,7 +1,7 @@ """ Example script for monitoring a Raspberry PI """ -import requests, time, sched, random, os +import requests, time, sched, random, os, ssl YOUR_DT_API_URL = 'https://{id}.live.dynatrace.com'; YOUR_DT_API_TOKEN = '{token}';