1.Dolphinscheduler钉钉告警
import pymysql
import json
import requests
import hmac
import hashlib
import time
import base64
import urllib
from DBUtils.PooledDB import PooledDB
from apscheduler.schedulers.blocking import BlockingScheduler
from dolphinscheduler import analysis_processing
POOL = PooledDB(
creator=pymysql,
maxconnections=6,
mincached=2,
maxcached=5,
maxshared=3,
blocking=True,
maxusage=None,
setsession=[],
ping=0,
host='127.0.0.1',
port=3306,
user='root',
password='*************',
database='dolphinscheduler',
charset='utf8')
def get_data_fetchall(sql):
connect = POOL.connection()
cursor = connect.cursor()
try:
cursor.execute(sql)
results = cursor.fetchall()
return results
except:
print("Error: unable to fetch data")
connect.close()
def main():
exec_sql = '''
SELECT
c.id,
c.NAME AS project_name,
b.NAME AS process_name,
a.NAME AS task_name,
a.submit_time,
a.start_time,
a.end_time,
round((unix_timestamp(a.end_time)-unix_timestamp(a.start_time))/3600,2) AS duration
FROM t_ds_task_instance a
LEFT JOIN t_ds_process_definition b ON a.process_definition_id=b.id
LEFT JOIN t_ds_project c ON b.project_id=c.id
WHERE a.submit_time>=date_format(now(),"%Y-%m-%d 00:00:00") AND a.task_type="SHELL"
ORDER BY duration DESC LIMIT 10
'''
result_all = get_data_fetchall(exec_sql)
sendtext = "任务慢查询 [ %d ]条数据:" % result_all.__len__()
print(sendtext)
if result_all is not None:
for result in result_all:
id = result[0]
project_name = result[1]
process_name = result[2]
task_name = result[3]
submit_time = result[4].strftime('%Y-%m-%d %H:%M:%S')
start_time = result[5].strftime('%Y-%m-%d %H:%M:%S')
end_time = result[6].strftime('%Y-%m-%d %H:%M:%S')
duration = result[7]
alert_msg_template = " `【%s - 任务检测到慢查询!!!】` /n>**项目名称:** *%s* /n>**执行进程:** *%s* /n>**Task名称:** *%s* /n>**任务提交时间:** *%s* /n>**执行开始时间:** *%s* /n>**执行结束时间:** *%s* /n>**任务耗时:** *%s* /n" % (
task_name, project_name, process_name, task_name, submit_time, start_time, end_time, duration)
title = '【%s - 任务检测到慢查询!!!】' % task_name
send_dingding(title, alert_msg_template)
def send_dingding(title, text):
timestamp, sign = get_timestamp_sign()
url = "https://oapi.dingtalk.com/robot/send?access_token=你的token" + \
"×tamp=" + timestamp + "&sign=" + sign
h = {"Content-type": "application/json;charset=utf-8"}
values = {
"msgtype": "markdown",
"markdown": {
"title": "%s" % title,
"text": "%s" % text
},
"at": {
"isAtAll": True
}
}
x_msg = json.dumps(values).replace('/n', '\n\n')
res = requests.post(url, data=x_msg, headers=h)
errmsg = json.loads(res.text)['errmsg']
if errmsg == 'ok':
return 'ok'
return 'fail: %s' % res.text
def get_timestamp_sign():
timestamp = str(round(time.time() * 1000))
secret = "72b70fb27f1d0d5e218d676ed9c250126e4d1df3fe98e422a88d6dece337f6d4"
secret_enc = secret.encode('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 (timestamp, sign)
if __name__ == '__main__':
main()
- 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.
效果图
