Skip to content

Commit

Permalink
messsage
Browse files Browse the repository at this point in the history
  • Loading branch information
Feinburger committed May 3, 2024
1 parent ec890e5 commit 5d1c0c5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ def monitor(subdomain, FQDN, record_list, uptime, downtime, recorded, zone_id):
status_code_range = record_list[i].get("status_code_range", [[200, 299]])
if not within_range(status_code_range, int(response.status_code)) or not string_match(record_list[i].get("match_string", "random_string"), response.text):
print(f"{record_list[i]['ip_address']} not within range or string doens't match")
print(f"response status code: {response.status_code}")
raise requests.RequestException()

print(f"{record_list[i]['ip_address']}:{record_list[i].get('port', 80)}{record_list[i].get('path', '/')} UP")
Expand Down

0 comments on commit 5d1c0c5

Please sign in to comment.