使用python+django+twistd 开发自己的操作和维护系统的一个
许多开源操作系统和维护系统,例nagios、zabbix、cati等等,但是,当他们得到的时间自己的个性化操作和维护需求,始终无力!
最近的一项研究python。因此,我们认为python+django+twisted要定制一个完全个性化的操作和维护系统。
有几个基本的功能:监控、分析、报警、更甚者直接依据分析的结果进行反应操作。而以上几点通过上述的框架能够比較easy的实现。
以下上图说明:
使用freemind整理了下思路:
以下是一些代码段,完整的代码下载见文档底部:
Server:
#!/usr/bin/env python
#coding:utf-8
__author__ = 'dwj' from twisted.internet.protocol import ServerFactory
from twisted.protocols import basic
import cx_Oracle
from twisted.application import service, internet class Mornitor_Protocol(basic.LineReceiver): def __init__(self):
#
_oracle_conn=cx_Oracle.connect('xxxx', 'xxxx', '192.168.7.17/test', threaded=True)
_oracle_conn.autocommit = True
self.cur = _oracle_conn.cursor()
self._oracle_conn=_oracle_conn def ruku(self, line):
ip=self.transport.getPeer().host
#获取clientIP
line=line.split(':::')
#使用:::切割原始数据
if line[1] in ['cpu', 'mem', 'disk', 'tcp', 'net', 'process_down']:
#依据数据包头来确定使用insert还是update。当是tcp包头的时候插入,其余的更新
if line[1] == 'tcp':
sql = "insert into MORNITOR_BASICINFO (ipadd,time,tcp) values (\'%s\',\'%s\',\'%s\')"%(ip,line[0],line[3])
print sql
self.cur.execute(sql) else:
line_again = line[3].split('::')
sql = 'update MORNITOR_BASICINFO set %s=\'%s\',%s=\'%s\' where ipadd=\'%s\' and time=\'%s\''%(line[1],line_again[0],line[2],line_again[1],ip,line[0])
print sql
self.cur.execute(sql) def connectionMade(self):
print 'Connected!' def lineReceived(self, line):
print line
self.ruku(line)
#接受到数据之后运行入库操作。
def connectionLost(self, reason='connectionDone'):
self._oracle_conn.close()
print 'The db is close... ok!' class Mornitor_Factory(ServerFactory):
#还没想好要初始化什么
def __init__(self,service):
self.service = service protocol = Mornitor_Protocol class Fish_Service(service.Service): def __init__(self):
pass def startService(self):
service.Service.startService(self) #什么都不做,開始服务 # def stopService(self):
# return self._port.stopListening() #配置參数
port = 10000
iface = '127.0.0.1' top_server = service.MultiService() #定义服务容器 fish_server = Fish_Service() #实例化我们的服务
fish_server.setServiceParent(top_server) #把自己定义的服务增加到服务容器 factory = Mornitor_Factory(Fish_Service) #工厂化服务 tcp_server = internet.TCPServer(port, factory, interface=iface) #定义tcp服务
tcp_server.setServiceParent(top_server) #把tcp服务增加到服务容器 application = service.Application('Fish_Service') #给应用起个名字
top_server.setServiceParent(application) #把服务容器丢到应用中去
Client端
from twisted.protocols import basic
from twisted.internet import protocol, defer, task
import Get_basic_info_2 as Huoqu
import guardian as shouhu
import time
from twisted.application import service, internet class Monitor_Protocol(basic.LineReceiver):
#自定义客户端和服务端的连接协议。从basic的line继承 def __init__(self):
#
pass @staticmethod
def huoqu_shuju():
#定义一个函数获取本机的一些状态
now = str(time.strftime('%Y-%m-%d %H:%M:%S')) def add_tag(source, tag1, tag2 = 'none'):
#定义格式化字符串函数
return ':::'.join([now, tag1, tag2, source])
#使用:::分隔时间、简单信息、具体信息、原始信息 tcp = add_tag(Huoqu.net_tcp(), 'tcp')
cpu = add_tag(Huoqu.cpu(), 'cpu', 'cpu_detail')
mem = add_tag(Huoqu.mem(), 'mem', 'mem_detail')
disk = add_tag(Huoqu.disk_usage(), 'disk', 'disk_detail')
net = add_tag(Huoqu.net_rate(), 'net', 'net_detail')
process = add_tag(shouhu.check_alive(), 'process_down', 'process_alived')
result = (tcp, cpu, mem, disk, net, process, )
d = defer.Deferred()
#使用defered返回结果
d.callback(result)
return d def xunhuan(self, list):
#定义循环发送函数
for i in list:
self.sendLine(i) def fasong(self):
#定义程序执行顺序,取得信息后用callback交给发送函数发送
self.huoqu_shuju().addCallback(self.xunhuan) def loop(self):
#使用twist内置的循环函数定义几秒监控数据传送到服务端
l = task.LoopingCall(self.fasong)
l.start(1) def connectionMade(self):
#覆盖协议的connectmade函数。定义于服务端的连接建立后開始循环
print 'Connected!......ok!'
self.loop() def lineReceived(self, line):
#必须覆盖接受函数,否则twist会报not importent错误! pass class Moinitor_client_factory(protocol.ReconnectingClientFactory): def __init__(self, service):
#还没想要要写什么
self.service = service
protocol = Monitor_Protocol class Client_Service(service.Service): def __init__(self):
pass def startService(self):
service.Service.startService(self) #配置文件開始
port = 10000
host = '127.0.0.1' #守护进程
top_service = service.MultiService() #定义服务容器 client_service = Client_Service() #实例化服务类
client_service.setServiceParent(top_service) #把自定义的服务丢到服务容器中 factory = Moinitor_client_factory(client_service) #定义服务工厂化 tcp_service = internet.TCPClient(host, port, factory) #定义tcp连接的服务
tcp_service.setServiceParent(top_service) #把tcp服务丢到服务容器中去 application = service.Application('Fish_Service') #定义应用名字
top_service.setServiceParent(application) #把服务容器丢到应用中去
一些自己定义监控程序是否存活的脚本:
program = {'nginx': ['/opt/nginx/logs/nginx.pid', '/opt/nginx/sbin/nginx'],
'rsync-C': ['/var/run/rsyncd.pid', 'rsync --daemon'],
} def main():
for k in program:
a = get_pid(k, program[k][0])
if isinstance(a, tuple):
print '%s is not running!' % k
print 'Start the program by Horland_guardian!'
subprocess.call(program[k][1], shell=True)
else:
print 'The %s is running!' % k def check_alive():
l_lived = []
l_downed = []
for k in program:
a = get_pid(k, program[k][0])
if isinstance(a, tuple):
l_downed.append(k)
else:
l_lived.append(k)
process_alived = ' '.join(l_lived)
process_down = ' '.join(l_downed) return '::'.join([process_down, process_alived])
django的使用眼下仅仅须要使用到admin模块就能够。
以下是一些代码段:
model
class BasicInfo(models.Model):
ipadd = models.IPAddressField(verbose_name = u'IP地址')
time = models.CharField(max_length=50, verbose_name = u'时间')
cpu = models.CharField(max_length=255, blank=True, verbose_name = u'CPU%')
cpu_detail = models.CharField(max_length=255, blank=True, verbose_name = u'CPU详情')
mem = models.CharField(max_length=255, blank=True, verbose_name = u'内存%')
mem_detail = models.CharField(max_length=255, blank=True, verbose_name = u'内存详情')
disk = models.CharField(max_length=255, blank=True, verbose_name = u'磁盘%')
disk_detail = models.CharField(max_length=255, blank=True, verbose_name = u'磁盘详情')
net = models.CharField(max_length=255, blank=True, verbose_name = u'流量 bytes/s')
net_detail = models.CharField(max_length=1000, blank=True, verbose_name = u'流量详情')
tcp = models.CharField(max_length=255, blank=True, verbose_name = u'tcp连接状态')
process_down = models.CharField(max_length=255, blank=True, verbose_name = u'DOWN-进程')
process_alived = models.CharField(max_length=255, blank=True, verbose_name = u'Process_UP') def Process_DOWN(self):
return '<span style="color: #%s;">%s</span>' % ('ff0000', self.process_down) #拓机的进程用红色标识
Process_DOWN.allow_tags = True
注冊到admin
class BasicInfo_admin(admin.ModelAdmin): list_display = ('time', 'cpu', 'cpu_detail', 'mem', 'mem_detail', 'disk', 'disk_detail', 'net', 'net_detail', 'tcp', 'Process_DOWN', 'process_alived')
list_filter = ('ipadd', )
admin.site.register(BasicInfo, BasicInfo_admin)
freemind整理的思路中另一些功能没有实现。眼下这个仅仅能算个简单的demon吧,可是基本实现了监控的目的。欢迎大家给我留言!
以下上个django的admin界面截图吧!
代码下载
http://download.csdn.net/detail/qcpm1983/7611579
版权声明:本文博客原创文章。博客,未经同意,不得转载。
使用python+django+twistd 开发自己的操作和维护系统的一个的更多相关文章
- [python] python django web 开发 —— 15分钟送到会用(只能送你到这了)
1.安装python环境 1.1 安装python包管理器: wget https://bootstrap.pypa.io/get-pip.py sudo python get-pip.py 1. ...
- 教你如何将 Sublime 3 打造成 Python/Django IDE开发利器
Sublime Text 是一款非常强大的文本编辑器, 下面我们介绍如何将 Sublime Text 3 打造成一款 Python/Django 开发利器: 1. 安装 Sublime Text 3 ...
- Sublime 3 打造成 Python/Django IDE开发利器
Sublime Text 是一款非常强大的文本编辑器, 下面我们介绍如何将 Sublime Text 3 打造成一款 Python/Django 开发利器: 1. 安装 Sublime Text ...
- Python+Django+SAE系列教程17-----authauth (认证与授权)系统1
通过session,我们能够在多次浏览器请求中保持数据,接下来的部分就是用session来处理用户登录了. 当然,不能仅凭用户的一面之词,我们就相信,所以我们须要认证. 当然了,Django 也提供了 ...
- 在Windows下配置Python+Django+Eclipse开发环境
一.配置开发环境我的开发环境是:Python2.6.7 + Django1.6.2 + Eclipse1.安装Python2.安装Eclipse的Python插件PyDev如上两步如何操作请点击此进行 ...
- Centos 下,配置 Apache + Python + Django + postgresSQL 开发环境
用 Python 搭建一个 Web 服务器 文章结构 一.安装 Apache.Python.django 二.安装 mod_wsgi,Apache 为 Python 提供的 wsgi 模块 三.将 ...
- python——Django(ORM连表操作)
千呼万唤始出来~~~当当当,终于系统讲了django的ORM操作啦!!!这里记录的是django操作数据库表一对多.多对多的表创建及操作.对于操作,我们只记录连表相关的内容,介绍增加数据和查找数据,因 ...
- windows下python+Django+eclipse开发环境的配置
1.JDK环境的安装 在http://www.java.com/zh_CN/download/faq/develop.xml 页面下,点击JDK下载,下载所需的jdk版本.直接点击安装即可. 2.py ...
- python全栈开发day62-两表操作增删改查,外键,if else模板语法
一.今日内容总结: day62 内容回顾: 1. django有关所有命令: pip install django==1.11.14 django-admin startproject 项目名称 cd ...
随机推荐
- nginx源代码分析--event事件驱动初始化
1.在nginx.c中设置每一个核心模块的index ngx_max_module = 0; for (i = 0; ngx_modules[i]; i++) { ngx_modules[i]-> ...
- [置顶] CentOS release 5.4 (Final)重置root密码(图文)
- c++ 如何获取系统时间 - zjnig711的信息仓库 - 博客频道 - CSDN.NET
c++ 如何获取系统时间 - zjnig711的信息仓库 - 博客频道 - CSDN.NET c++ 如何获取系统时间 分类: C/C++ 2008-05-08 22:15 14115人阅读 评论(5 ...
- java nio-理解同步、异步,阻塞和非阻塞
理解同步.异步,阻塞和非阻塞 结论:阻塞.非阻塞与是否同步异步无关. 转自知乎 “阻塞”与"非阻塞"与"同步"与“异步"不能简单的从字面理解, ...
- wx_sample.php
<?php /** * wechat php test */ //define your token define("TOKEN", "weixin&quo ...
- 浅谈Storm流式处理框架(转)
Hadoop的高吞吐,海量数据处理的能力使得人们可以方便地处理海量数据.但是,Hadoop的缺点也和它的优点同样鲜明——延迟大,响应缓慢,运维复杂. 有需求也就有创造,在Hadoop基本奠定了大数据霸 ...
- hdu3485(递推)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3485 分析: a[i]表示长度为i,第i位为0的,符合情况的个数. b[i]表示长度为i,第i位为1的 ...
- linux--档案权限与目录配置
下面是最近学习档案权限与目录配置的一些知识点总结***博客园-邦邦酱好*** Linux最优秀的地方之一,就在于他的多人多任务环境.而为了让各个使用者具有较保密的档案数据,因此档案的权限管理就变的很重 ...
- U5首次登录
1.在Llinx中,大小写字母是不一样的东西. 2.date可以查看日期,date的正确格式是:date +%Y/%m/%d/%H/%M(左边这句话所想表达的意思是年的字母必须为大写,月的必须为小写. ...
- c++进阶
对网络编程/多线程/系统编程有一定了解:4:对ngnix,redis,memcache有一定了解:5:有高并发服务开发经验优先: 因为C/C++在嵌入式.移动互联网.物联网有很大的优势,有很多人就靠一 ...