def get_system_log_queue(): """ Json格式为: {'alias':'w01' 'host':'192.168.1.100' 'timestamp':123213123 'type': 'reboot' or 'shutdown' or 'power' 三个值中其中一个 } """ system__log_queue ='ztq:queue:system_log' return get_limit_queue(system__log_queue, 200)
def get_work_log_queue(): """ json格式为:: {'func':'transform', 'kw':{ ... # 和前面task_queue相同 }, "runtime":{ # 队列运行相关信息 'created':12323423 #进入原始队列时间 'queue':'q01' # 是在哪个原子原子队列 'start':123213123 #转换开始时间 'end':123213123 #转换结束时间 'worker':'w01', # 转换器名 'thread':'131231', # 'return':-1, # 返回的错误代号, 0表示成功 'reason':'失败原因' # 详细的原因 } } """ work__log_queue = "ztq:queue:worker_log" return get_limit_queue(work__log_queue, 200)