你必须知道的Python运维常用脚本!(日常更新)

原文链接:https://bbs.huaweicloud.com/blogs/16f870b109a911e9bd5a7ca23e93a891

 

github地址:https://github.com/opsonly, 上面是一个基于python3.7django2.1的多人博客系统,喜欢的可以给个star~



判断是否是一个目录

#!/usr/bin/env python3# -*- coding: utf-8 -*-# @Time    : 2018-12-18 15:16# @Author  : opsonly# @Site    : # @File    : opsUse.py# @Software: PyCharmimport os  dir = "/var/www/html/EnjoyCarApi/"if os.path.isdir(dir):     print('%s is a dir' % dir)else:     print('%s is not a dir' % dir)

 

系统内存与磁盘检测
#!/usr/bin/env python3# -*- coding: utf-8 -*-# @Time    : 2018-12-17 17:16# @Author  : opsonly# @Site    : # @File    : systemissue.py# @Software: PyCharmimport psutildef memissue():     print('内存信息:')     mem = psutil.virtual_memory()    # 单位换算为MB     memtotal = mem.total/1024/1024     memused = mem.used/1024/1024     membaifen = str(mem.used/mem.total*100) + '%'      print('%.2fMB' % memused)     print('%.2fMB' % memtotal)     print(membaifen)def cuplist():     print('磁盘信息:')     disk = psutil.disk_partitions()     diskuse = psutil.disk_usage('/')    #单位换算为GB     diskused = diskuse.used / 1024 / 1024 / 1024     disktotal = diskuse.total / 1024 / 1024 / 1024     diskbaifen = diskused / disktotal * 100     print('%.2fGB' % diskused)     print('%.2fGB' % disktotal)     print('%.2f' % diskbaifen)  memissue() print('*******************') cuplist()

 


统计nginx日志前十ip访问量并以柱状图显示

#!/usr/bin/env python3# -*- coding: utf-8 -*-# @Time    : 2018-12-18 15:49# @Author  : opsonly# @Site    : # @File    : nginx_ip.py# @Software: PyCharmimport matplotlib.pyplot as plt#nginx_file = 'nginx2018-12-18_07:45:26'ip = {}# 筛选nginx日志文件中的ipwith open(nginx_file) as f:    for i in f.readlines():         s = i.strip().split()[0]         lengh = len(ip.keys())        # 统计每个ip的访问量以字典存储         if s in ip.keys():             ip[s] = ip[s] + 1         else:             ip[s] = 1#以ip出现的次数排序返回对象为listip = sorted(ip.items(), key=lambda e:e[1], reverse=True)#取列表前十newip = ip[0:10:1] tu = dict(newip)  x = [] y = []for k in tu:     x.append(k)     y.append(tu[k]) plt.title('ip access') plt.xlabel('ip address') plt.ylabel('PV')#x轴项的翻转角度plt.xticks(rotation=70)#显示每个柱状图的值for a,b in zip(x,y):     plt.text(a, b, '%.0f' % b, ha='center', va= 'bottom',fontsize=7)  plt.bar(x,y) plt.legend() plt.show()

 

test.png



查看网段里有多少ip地址

#!/usr/bin/env python3#
-*- coding: utf-8 -*-# @Time : 2018-12-18 15:31# @Author : opsonly# @Site : # @File : ipTest.py# @Software: PyCharmimport IPy ip = IPy.IP('172.16.0.0/26') print(ip.len())for i in ip: print(i)

 

posted @ 2018-12-27 22:35  刘建章  阅读(1628)  评论(0编辑  收藏  举报