web code监控

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time    : 2023/7/4 14:00
# @Author  : zk_linux
# @File    : monitoring_code.py
# @Software: PyCharm
# @Description: Monitoring verification code, SMS pin alarm
 
 
import requests
import urllib
import logging
import time
import subprocess
import datetime
import json
import hmac
import hashlib
import base64
import urllib.parse
import socket
import configparser
 
from aliyunsdkcore.client import AcsClient
from aliyunsdkcore.acs_exception.exceptions import ClientException
from aliyunsdkcore.acs_exception.exceptions import ServerException
from aliyunsdkcore.auth.credentials import AccessKeyCredential
from aliyunsdkcore.auth.credentials import StsTokenCredential
from aliyunsdkdysmsapi.request.v20170525.SendSmsRequest import SendSmsRequest
 
credentials = AccessKeyCredential('LTAI5tMZtgpcAPMvmbmJc', 'naFX7u8VtYlQty5BP6XRZWviV')
 
logging.basicConfig(level=logging.INFO,
                    # filename='../log/esl_business_code.log',
                    filename='/server/scripts/log/esl_business_code.log',
                    filemode='a',
                    format='%(asctime)s - %(pathname)s[line:%(lineno)d] - %(levelname)s: %(message)s'
                    )
 
 
def get_digest(secret):
    timestamp = str(round(time.time() * 1000))
    secret_enc = secret.encode('utf-8'# utf-8编码
    string_to_sign = '{}\n{}'.format(timestamp, secret)
    string_to_sign_enc = string_to_sign.encode('utf-8')
    hmac_code = hmac.new(secret_enc, string_to_sign_enc, digestmod=hashlib.sha256).digest()
    sign = urllib.parse.quote_plus(base64.b64encode(hmac_code))
    return f"&timestamp={timestamp}&sign={sign}"
 
 
def get_system_info():
    os_date = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S')
    public_net_ip = requests.get('http://ifconfig.me').text.strip()
    s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
    s.connect(('8.8.8.8', 80))
    local_ip = s.getsockname()[0]
    s.close()
    host_name = socket.gethostname()
    return os_date, public_net_ip, local_ip, host_name
 
 
class SendDingtalk:
    def __init__(self, webhook, secret, iphone_number, msg_title, msg_content):
        self.webhook = webhook
        self.secret = secret
        self.num = iphone_number
        self.msg_title = msg_title
        self.msg_content = msg_content
 
    def send_dingnding(self):
        MSG = "**告警主题**:" + "\n" + self.msg_title + "\n\n" \
              " >当前主机名:" + "\n" + get_system_info()[3] + "\n\n" \
              "> 当前时间:" + "\n" + get_system_info()[0] + "\n\n" \
              " >当前服务器IP:" + "\n" + get_system_info()[1] + "(公)" + "\n" + get_system_info()[2] + "(私)" + "\n\n" \
              "详细信息:" + "\n" + "\n" + str(self.msg_content) + "\n\n" \
 
        data = {
            "msgtype": "markdown",
            "markdown": {
                "title": 'HK-集群01-验证码监控',
                "text": MSG,
            },
            "at": {
                "atMobiles": [
                    "@83"
                ],
                "isAtAll": False
            }
        }
 
        request = requests.post(self.webhook + get_digest(self.secret), json=data)
 
 
class WebCodeConfig:
    def __init__(self, config_file):
        self.config_file = config_file
 
    def web_code_config(self):
        config = configparser.ConfigParser()
        config.read(self.config_file)
        return config['Code']
 
    def ding_taik_config(self):
        config = configparser.ConfigParser()
        config.read(self.config_file)
        return config['DingTalk']
 
    def sms_config(self):
        config = configparser.ConfigParser()
        config.read(self.config_file)
        return config['sms']
 
 
class SmsAlarm:
    def __init__(self, phone, sign, template):
        self.phonenumbers = phone
        self.signname = sign
        self.templatecode = template
 
    def get_sms_code(self):
        client = AcsClient(region_id='cn-hangzhou', credential=credentials)
 
        request = SendSmsRequest()
        request.set_accept_format('json')
 
        request.set_PhoneNumbers(self.phonenumbers)
        request.set_SignName(self.signname)
        request.set_TemplateCode(self.templatecode)
 
        response = client.do_action_with_exception(request)
 
 
class RestartDocker:
    title = ""
    msg_content = ""
 
    sms = WebCodeConfig('config.ini').sms_config()
    send_sms = SmsAlarm(sms['phonenumbers'], sms['signname'], sms['templatecode'])
 
 
    @classmethod
    def restart_esl_business(cls):
        cls.title = "HK_集群01_重启esl-business通知"
        cls.msg_content = '验证码异常,当前esl-business容器状态Exited,正在启动.'
 
 
        res = subprocess.run(['docker restart zk-refactor-esl-business'], shell=True, stderr=subprocess.PIPE)
        cls.send_sms.get_sms_code()
        logging.info('Restart the esl-business container')
 
        if res.returncode != 0:
            cls.title = "HK_集群01_构建esl-business通知"
            cls.msg_content = '验证码异常,容器esl-business不存在,正在构建esl-business容器.'
            logging.error(f"Restart the zk-refactor-esl-business container failed, restart the state:{res.returncode}.")
            command = (
                'cd /usr/local/esl\n'
                './docker-compose up -d --build zk-refactor-esl-business >>/dev/null 2>&1 '
            )
            build_container = subprocess.run(command, shell=True, stdout=subprocess.PIPE)
            cls.send_sms.get_sms_code()
            logging.info("Build the zk-refactor-esl-business container")
 
 
class MonitoringStatusCode:
    esl_business_status = 200
 
    def __init__(self, *args):
        self.config = args
 
    def get_master_code_status(self):
        try:
            master_esl_business = requests.get(self.config[3])
            if master_esl_business.status_code == self.esl_business_status:
                logging.info("Web is functioning properly")
        except requests.exceptions.RequestException as e:
            restart_cont = RestartDocker()
            restart_cont.restart_esl_business()
            ret = SendDingtalk(dingtalk['prod_webhook_url'], dingtalk['prod_secret'], dingtalk['mobile_number'],
                               RestartDocker.title, RestartDocker.msg_content)
            ret.send_dingnding()
            logging.error(f'Error occurred while connecting to the web server: {str(e)}')
 
 
 
if __name__ == '__main__':
    obj = WebCodeConfig('config.ini').web_code_config()
    dingtalk = WebCodeConfig('config.ini').ding_taik_config()
    res = MonitoringStatusCode(
        obj['mobile_phone_number'],
        obj['signature_name'],
        obj['template_code'],
        obj['master_monitor_address']
    )
    res.get_master_code_status()

  

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[MySQL]
master_host=
master_port=3306
master_user=root
master_password=
slave_host=
 
 
[DingTalk]
#生产
prod_webhook_url = https://oapi.dingtalk.com/robot/send?access_token=
prod_secret=
#测试
dev_webhook_url= https://oapi.dingtalk.com/robot/send?access_token=
dev_secret=
mobile_number=
 
[Redis]
redis_master_host=
redis_master_port= 6379
redis_master_password = zk123
redis_slave_host=
 
[Code]
mobile_phone_number =
signature_name =
template_code =
master_monitor_address=
slave_monitor_address=
 
[sms]
phonenumbers =
signname =
templatecode =

  

posted @   地铁昌平线  阅读(16)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 25岁的心里话
· 闲置电脑爆改个人服务器(超详细) #公网映射 #Vmware虚拟网络编辑器
· 零经验选手,Compose 一天开发一款小游戏!
· 因为Apifox不支持离线,我果断选择了Apipost!
· 通过 API 将Deepseek响应流式内容输出到前端
历史上的今天:
2018-07-20 Grafana安装
点击右上角即可分享
微信分享提示