|
@@ -69,3 +69,10 @@ def ping_monitor(integration_key, config_filename, state, monitoring_log_level,
|
|
|
|
|
|
logging.getLogger('urllib3').setLevel(logging.ERROR)
|
|
logging.getLogger('urllib3').setLevel(logging.ERROR)
|
|
requests.post(EVENTS_API_URL, data=payload.encode('utf-8'))
|
|
requests.post(EVENTS_API_URL, data=payload.encode('utf-8'))
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+def destroy_monitor(ping_url_or_uuid, config_filename, monitoring_log_level, dry_run): # pragma: no cover
|
|
|
|
+ '''
|
|
|
|
+ No destruction is necessary for this monitor.
|
|
|
|
+ '''
|
|
|
|
+ pass
|