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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
# -*- coding: utf-8 -*-
"""
Created on Thu Feb 1 17:16:16 2018
Change check in the morning to be checking data that's fetched 3 days ago.
@author: hanye
"""
from elasticsearch import Elasticsearch
#from es_hy_sign_in import es
import smtplib
from email.message import EmailMessage
import datetime
import sys
def videonumber_alert(days_from_running, test_model=False, f_log=None):
video_num_criteria={
'short-video': {
'observed': {
'miaopai': 400000,
'toutiao': 900000,
'new_tudou': 900000,
'kwai': 3e6,
'腾讯视频': 15e4,
'新华社': 300,
'人民日报': 300,
'腾讯新闻': 45e3,
'haokan': 600000
},
'new_released': {
'miaopai': 30000,
'toutiao': 50000,
'new_tudou': 50000,
'kwai': 1e5,
'腾讯视频': 5e3,
'新华社': 10,
'人民日报': 10,
'腾讯新闻': 1.5e3,
'haokan': 30000,
}
},
# 'live-video': {
# 'observed': {
# '斗鱼直播': 30e4,
# '花椒': 270e3,
# '一直播': 60e3,
# #'映客': 100000,
# '新华社': 600,
# '央视新闻+': 300,
# '人民日报': 90,
# '头条直播': 3000,
# '腾讯新闻直播': 900,
# },
# 'new_released': {
# '斗鱼直播': 4e4,
# '花椒': 9000,
# '一直播': 2000,
# '新华社': 20,
# '央视新闻+': 10, # 波动从0到20
# '人民日报': 1, # 波动从0到10
# '头条直播': 100, # 从0到200
# '腾讯新闻直播': 30,
# }
# }
}
email_group={
'short-video': [
'hanye@csm.com.cn',
'zhouyujiang@csm.com.cn',
'zhangtianli@csm.com.cn',
"litao@csm.com.cn",
"gengdi@csm.com.cn",
"luojia@csm.com.cn",
"zhangminghui@csm.com.cn",
],
'live-video': [
'hanye@csm.com.cn',
'zhouyujiang@csm.com.cn',
'yangjinshu@csm.com.cn',
'xinyue@csm.com.cn',
'zhangtianli@csm.com.cn',
],
}
if test_model==True:
email_group={
'short-video': [
'hanye@csm.com.cn',
],
'live-video': [
'hanye@csm.com.cn',
],
}
email_msg_suffix=('\n\n\n'
+'-'*80+'\n'
+'这是自动发送的邮件,可以不用回复。\n'
+'This is an automatically sent message. You do NOT need to reply.\n')
es=Elasticsearch(hosts='192.168.17.11', port=9200)
index_short_video='maintainance-short-video'
doc_type_short_video='daily'
index_live_video='maintainance-live-video'
doc_type_live_video='daily'
idx_dict={
'short-video': {
'index': index_short_video,
'doc_type': doc_type_short_video,
'data_index': 'short-video-production',
'data_doc_type': 'daily-url',
},
'live-video': {
'index': index_live_video,
'doc_type': doc_type_live_video,
'data_index': 'live-video-production',
'data_doc_type': 'daily-url',
}
}
today=datetime.datetime.now()-datetime.timedelta(days=days_from_running)
## test
#today=datetime.datetime(2018,1,12)
if f_log==None:
path='/home/hanye/project_data/Python/Projects/proj-short-videos/maintenance/log/'
log_fn='email_alert_for_%s_log' % datetime.datetime.strftime(today, '%b-%Y')
f_log=open(path+log_fn, 'a')
else:
f_log=sys.stdout
print('*'*80, file=f_log)
print('log timestamp ', datetime.datetime.now(), file=f_log)
print('Checking video number for fetch_date', today.isoformat()[:10], file=f_log)
fetch_year=today.year
fetch_month=today.month
fetch_day=today.day
alert_msg={}
for idx in video_num_criteria:
alert_msg[idx]={}
for stats_type in ['observed', 'new_released']:
alert_msg[idx][stats_type]=[]
for platform in video_num_criteria[idx][stats_type]:
search_body={
"query": {
"bool": {
"filter": [
{"term": {"fetch_year": fetch_year}},
{"term": {"fetch_month": fetch_month}},
{"term": {"fetch_day": fetch_day}},
{"term": {"platform.keyword": platform}},
{"term": {"stats_type.keyword": stats_type}},
]
}
}
}
search_resp=es.search(index=idx_dict[idx]['index'],
doc_type=idx_dict[idx]['doc_type'],
body=search_body,
request_timeout=100)
if search_resp['hits']['total']>0:
video_num=search_resp['hits']['hits'][0]['_source']['video_num']
fetch_date=search_resp['hits']['hits'][0]['_source']['fetch_date']
fetch_date_str=datetime.datetime.fromtimestamp(fetch_date/1e3).isoformat()[:10]
chk_source=idx_dict[idx]['index']
else:
# if no hits in maintainance index, search directly in data index
fetch_time_start_T=datetime.datetime(today.year, today.month, today.day)
fetch_time_start=int(fetch_time_start_T.timestamp()*1e3)
fetch_time_end=int((fetch_time_start_T+datetime.timedelta(days=1)).timestamp()*1e3)
if stats_type=='observed':
search_data_idx={
"query": {
"bool": {
"filter": [
{"term": {"platform.keyword": platform}},
{"range": {"fetch_time": {"gte": fetch_time_start,
"lt": fetch_time_end}}}
]
}
},
"size": 0,
}
elif stats_type=='new_released':
fetch_time_start_ts_enlarge=int(fetch_time_start-24*3600*1e3)
search_data_idx={
"query": {
"bool": {
"filter": [
{"term": {"platform.keyword": platform}},
{"range": {"release_time": {"gte": fetch_time_start_ts_enlarge,
"lt": fetch_time_end}}},
]
}
},
"size": 0,
}
else:
print('Error value with stats_type: %s, system exit' % stats_type, file=f_log)
sys.exit(1)
search_data_idx_resp=es.search(index=idx_dict[idx]['data_index'],
doc_type=idx_dict[idx]['data_doc_type'],
body=search_data_idx,
request_timeout=100)
video_num=search_data_idx_resp['hits']['total']
fetch_date_str=today.isoformat()[:10]
chk_source=idx_dict[idx]['data_index']
if video_num<video_num_criteria[idx][stats_type][platform]:
msg={'fetch_date': fetch_date_str,
'platform': platform,
'video_num': video_num,
'alert_criteria': video_num_criteria[idx][stats_type][platform],
'short_perct': (video_num_criteria[idx][stats_type][platform]-video_num)/video_num_criteria[idx][stats_type][platform]*100,
'index': idx,
'chk_source': chk_source,
}
alert_msg[idx][stats_type].append(msg)
else:
print('%s %s OK' % (idx, platform), file=f_log)
# send the alert email
csm_mail_service='mail.csm.com.cn'
sender='hanye@csm.com.cn'
stats_type_dict={
'observed': '总视频条目数',
'new_released': '新增视频条目数'
}
for idx in alert_msg:
email_subj='[数据日常运维预警] 数据条目预警 %s %s' % (idx, today.isoformat()[:10])
email_msg_body=''
for stats_type in alert_msg[idx]:
if len(alert_msg[idx][stats_type])>0:
email_msg_body+=('%s %s 预警:\n' % (idx, stats_type_dict[stats_type]))
for ml in alert_msg[idx][stats_type]:
msgline='平台 %s 抓取 %s 视频条目数:%d,低于预警值(%d) %.2f%% \n' % (ml['platform'], ml['fetch_date'], ml['video_num'], ml['alert_criteria'], ml['short_perct'])
email_msg_body+=msgline
email_msg_body+='\nchecking data source index name: %s\n\n\n' % alert_msg[idx][stats_type][0]['chk_source']
if email_msg_body!='':
email_msg_body+=email_msg_suffix
print('email_msg_body:\n', email_msg_body, file=f_log)
email_msg=EmailMessage()
email_msg.set_content(email_msg_body)
email_msg['Subject']=email_subj
email_msg['From']=sender
email_msg['to']=email_group[idx]
try:
server=smtplib.SMTP(host=csm_mail_service)
server.send_message(email_msg)
server.quit()
print('Successfully sent email to %s for %s' % (email_group[idx], idx),
datetime.datetime.now(), file=f_log)
print('email_msg:\n', email_msg, file=f_log)
except:
print('Failed to connect email server.', datetime.datetime.now(), file=f_log)
else:
print('All platforms is ok for %s on fetch_date %s, %s' % (idx, today.isoformat()[:10], datetime.datetime.now()), file=f_log)
print('Alert criteria:\n', video_num_criteria[idx], file=f_log)
print('\n\n', file=f_log)
f_log.close()