使用python3調(diào)用wxpy模塊,監(jiān)控linux日志并定時(shí)發(fā)送消息給群組或好友,具體代碼如下所示:
#!/usr/bin/env python3 # -*- coding: utf-8 -*- from __future__ import unicode_literals from threading import Timer from wxpy import * import requests import subprocess import time from PIL import Image, ImageDraw, ImageFont from apscheduler.schedulers.blocking import BlockingScheduler #cache_path=true 表示登陸一次之后,進(jìn)行緩存,下次登陸只需要手機(jī)確認(rèn) bot = Bot(console_qr=2,cache_path=True) #獲取topic是否消費(fèi)延遲 def get_Lag(): text="" p = subprocess.Popen('kafka-consumer-offset-checker --zookeeper 192.168.1.116 --group t_sync --topic SYNC_DATABASE_UPDATE', shell=True, stdout=subprocess.PIPE,stderr=subprocess.PIPE,universal_newlines=True) #universal_newlines=True,表示輸出為字符串,默認(rèn)是byte while True: line =p.stdout.readline() if not line: break else: text+=line + '\n' return text def get_news(): text=[] count=0 t=True p = subprocess.Popen('tail -F /home/hadoop/da.txt', shell=True, stdout=subprocess.PIPE,stderr=subprocess.PIPE,universal_newlines=True) while True: line =str(p.stdout.readline()) if not line: break elif "send data" in line and t: for item in line.split(','): count +=1 if count <= 200: text.append(item) break return text def get_context(): result="" word=get_news() for i in range(len(word)): if(i % 4 ==0): result= result+word[i]+"\n" else: result= result+word[i]+" " return result def send_image(): try: lags=get_Lag() print(lags) content=get_context() #發(fā)送消費(fèi)延遲的數(shù)據(jù) lagImage= Image.new('RGB', (1000, 600),(255,255,255)) draw = ImageDraw.Draw(lagImage) font = ImageFont.truetype("/usr/share/fonts/cjkuni-ukai/ukai.ttc", 18, encoding="unic") draw.text((10, 10), lags, 'black', font) lagImage.save('/home/hadoop/lags.jpg') #發(fā)送日志消息 image= Image.new('RGB', (1000, 810),(255,255,255)) draw = ImageDraw.Draw(image) font = ImageFont.truetype("/usr/share/fonts/cjkuni-ukai/ukai.ttc", 18, encoding="unic") #ukai.ttc 字體 draw.text((10, 10), content, 'black', font) image.save('/home/hadoop/123.jpg') #發(fā)送群組 group = bot.groups().search("大數(shù)據(jù)小組")[0] group.send_image('/home/hadoop/123.jpg') #發(fā)送好友 my_friend = bot.friends().search(u'濤')[0] my_friend.send_image('/home/hadoop/lags.jpg') my_friend.send_image('/home/hadoop/123.jpg') # t = Timer(100, send_image) #t.start() except: my_friend.send(u"今天消息發(fā)送失敗了") if __name__ == "__main__": #send_image() scheduler = BlockingScheduler() scheduler.add_job(send_image, 'cron', hour='15', minute='01') scheduler.add_job(send_image, 'cron', hour='14', minute='58') scheduler.start()
總結(jié)
以上所述是小編給大家介紹的使用python3調(diào)用wxpy模塊監(jiān)控linux日志并定時(shí)發(fā)送消息給群組或好友,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!
如果你覺(jué)得本文對(duì)你有幫助,歡迎轉(zhuǎn)載,煩請(qǐng)注明出處,謝謝!
更多文章、技術(shù)交流、商務(wù)合作、聯(lián)系博主
微信掃碼或搜索:z360901061

微信掃一掃加我為好友
QQ號(hào)聯(lián)系: 360901061
您的支持是博主寫作最大的動(dòng)力,如果您喜歡我的文章,感覺(jué)我的文章對(duì)您有幫助,請(qǐng)用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點(diǎn)擊下面給點(diǎn)支持吧,站長(zhǎng)非常感激您!手機(jī)微信長(zhǎng)按不能支付解決辦法:請(qǐng)將微信支付二維碼保存到相冊(cè),切換到微信,然后點(diǎn)擊微信右上角掃一掃功能,選擇支付二維碼完成支付。
【本文對(duì)您有幫助就好】元
