1 Star 0 Fork 0

Scarecrow/smp-http-test

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ngrok_health.py 888 Bytes
一键复制 编辑 原始数据 按行查看 历史
Scarecrow 提交于 2019-04-02 20:03 . init
# -*- encoding:utf-8 -*-
import random
# from flask import Flask
import time
import datetime
import EmailUtil
from commons import *
from constants import *
def ngrok_health(url):
try:
result = requests.get(url)
print(result)
if result.status_code == 404:
EmailUtil.send_mail(
["gaojing1996@vip.qq.com"],
"ngrok挂了",
"ngrok挂了",
[]
)
return -1
pass
except (Exception, RuntimeError, TypeError, NameError):
print("内部异常,请检查服务连通")
except:
print("未知异常")
if __name__ == '__main__':
urls = ["http://bill.api.ng.scare.ml/bill/health", "http://yto.207.ng.gnosis.gq"]
while True:
if ngrok_health(urls[0]) == -1:
time.sleep(10)
else:
time.sleep(5)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/accessgnosis/smp-http-test.git
git@gitee.com:accessgnosis/smp-http-test.git
accessgnosis
smp-http-test
smp-http-test
master

搜索帮助