Exemplo n.º 1
0
 def __init__(self, name=None, conf=None):   
     multiprocessing.Process.__init__(self,name = name)
     ZBase.__init__(self,'TailProcess_%s' % name)
     self.name = name
     self.conf = conf
     self.tailer = tail.Tail(self.conf['log_path'], self.conf['max_size']) 
     self.data = {}
     self.analyseResult = zplugin.DICT
     self.regular = {}
     self.transform = {}
     self.initRegular()
Exemplo n.º 2
0
Arquivo: ztail.py Projeto: actank/zmon
 def __init__(self):
     ZBase.__init__(self,'ZTail')
     self.conf = {}
     #维护当前正在运行的进程,便于创建和清理
     self.tailProcess = {}
Exemplo n.º 3
0
Arquivo: zcm.py Projeto: actank/zmon
 def __init__(self):
     ZBase.__init__(self, 'Zcm')
     self.pub = {}
     self.products = self.GetConf('products')
Exemplo n.º 4
0
 def __init__(self):
     ZBase.__init__(self, 'Zcm')
     self.pub = {}
     self.products = self.GetConf('products')
Exemplo n.º 5
0
Arquivo: zpush.py Projeto: actank/zmon
 def __init__(self):
     ZBase.__init__(self, 'ZPush')
     self.products = self.GetConf('products')
Exemplo n.º 6
0
Arquivo: zpush.py Projeto: actank/zmon
 def __init__(self, threadname):
     threading.Thread.__init__(self, name=threadname)
     ZBase.__init__(self,'PushThread_%s' % threadname)
Exemplo n.º 7
0
 def __init__(self):
     ZBase.__init__(self, 'ZTail')
     self.conf = {}
     #维护当前正在运行的进程,便于创建和清理
     self.tailProcess = {}
Exemplo n.º 8
0
 def __init__(self):
     ZBase.__init__(self, 'ZPush')
     self.products = self.GetConf('products')
Exemplo n.º 9
0
 def __init__(self, threadname):
     threading.Thread.__init__(self, name=threadname)
     ZBase.__init__(self, 'PushThread_%s' % threadname)