Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
水月火
Python_01
提交
cf9d4590
P
Python_01
项目概览
水月火
/
Python_01
与 Fork 源项目一致
Fork自
inscode / Python
通知
1
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Python_01
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
cf9d4590
编写于
5月 04, 2023
作者:
6
645313cc6180332c2cd6b771
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Auto commit
上级
df352508
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
50 addition
and
0 deletion
+50
-0
web.py
web.py
+50
-0
未找到文件。
web.py
0 → 100644
浏览文件 @
cf9d4590
#coding=utf-8
import
requests
# 导入 requests 库,用于向网站发送请求
import
yagmail
# 导入 yagmail 库,用于发送邮件
import
time
# 导入 time 库,用于设置监控间隔
# Email configuration
SMTP_SERVER
=
'smtp.qq.com'
# 邮箱 SMTP 服务器地址
SMTP_PORT
=
465
# 邮箱 SMTP 服务器端口
SMTP_USERNAME
=
'your_email@gmail.com'
# 邮箱用户名
SMTP_PASSWORD
=
'your_email_password'
# 邮箱密码或授权码
SMTP_FROM
=
'your_email@gmail.com'
# 发件人邮箱地址
SMTP_TO
=
'recipient_email@gmail.com'
# 收件人邮箱地址
# 设置要监控的网站 URL
WEBSITE_URLS
=
[
"https://www.example.com"
]
# 邮箱告警设置
def
send_email
(
subject
,
message
):
yag
=
yagmail
.
SMTP
(
SMTP_USERNAME
,
SMTP_PASSWORD
,
SMTP_SERVER
,
SMTP_PORT
,
smtp_ssl
=
True
)
# 初始化 yagmail.SMTP 对象
yag
.
send
(
to
=
SMTP_TO
,
subject
=
subject
,
contents
=
message
)
# 发送邮件
# Function to check website status
def
check_website
(
url
):
try
:
response
=
requests
.
get
(
url
)
# 向网站发送 GET 请求
return
response
.
status_code
# 返回响应状态码
except
requests
.
exceptions
.
RequestException
as
e
:
print
(
e
)
return
None
# Main loop to monitor website status
website_statuses
=
{}
# 创建一个字典来保存网站的状态
while
True
:
# 进入无限循环
for
url
in
WEBSITE_URLS
:
# 遍历要监控的网站 URL
status
=
check_website
(
url
)
# 获取网站的状态码
if
url
not
in
website_statuses
:
# 如果网站 URL 不在字典中,添加到字典中
website_statuses
[
url
]
=
None
if
status
==
website_statuses
[
url
]:
# 如果状态码未发生变化,打印日志信息
print
(
'Website {} status unchanged: {}'
.
format
(
url
,
status
))
else
:
# 如果状态码发生变化
if
status
==
200
:
# 如果状态码为 200,表示网站正常
website_statuses
[
url
]
=
status
print
(
'Website {} status changed to: {}'
.
format
(
url
,
status
))
else
:
# 如果状态码不为 200,表示网站出现问题,发送邮件告警
print
(
'Website {} status changed to: {}'
.
format
(
url
,
status
))
message
=
'Website {} status changed to {}'
.
format
(
url
,
status
)
send_email
(
'Website status change notification'
,
message
)
time
.
sleep
(
60
)
# 设置监控间隔为 60 秒,每隔 60 秒执行一次```
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录