def _make_event(self, process_name):
hostname = socket.gethostname()
current_time = timeutils.utcnow()
event = {
'notification': {
'type': ec.EventConstants.TYPE_PROCESS,
'hostname': hostname,
'generated_time': current_time,
'payload': {
'event': ec.EventConstants.EVENT_STOPPED,
'process_name': process_name
}
}
}
return event
评论列表
文章目录