Commit be0e4b16 by 陈森彬

update

parent 9bb8e4bc
Showing with 1 additions and 1 deletions
......@@ -79,6 +79,7 @@ def get_crawler_process_info():
p = psutil.Process(int(pid))
info = p.as_dict(attrs=['cmdline', 'create_time', 'cpu_times'])
info['cmdline'] = {k: v for k, v in zip(info['cmdline'][2::2], info['cmdline'][3::2])}
print(info)
info_dict = dict()
info_dict['pid'] = pid.strip()
info_dict['task_code'] = info['cmdline']['-r']
......
......@@ -21,7 +21,6 @@ def task_fail_rate_monitor():
while True:
try:
msg = get_task_error_rate(time_range=TIME_INTERVAL)
print(msg)
if msg:
logger.info(msg)
dd_send_msg(msg)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment