1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (c) 2016 Red Hat, Inc. <http://www.redhat.com>
# This file is part of GlusterFS.
#
# This file is licensed to you under your choice of the GNU Lesser
# General Public License, version 3 or any later version (LGPLv3 or
# later), or the GNU General Public License, version 2 (GPLv2), in all
# cases as published by the Free Software Foundation.
#
import socket
import time
from eventsapiconf import SERVER_ADDRESS, EVENTS_ENABLED
from eventtypes import all_events
from utils import logger, setup_logger
# Run this when this lib loads
setup_logger()
def gf_event(event_type, **kwargs):
if EVENTS_ENABLED == 0:
return
if not isinstance(event_type, int) or event_type >= len(all_events):
logger.error("Invalid Event Type: {0}".format(event_type))
return
try:
client = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
client.connect(SERVER_ADDRESS)
except socket.error as e:
logger.error("Unable to connect to events.sock: {0}".format(e))
return
# Convert key value args into KEY1=VALUE1;KEY2=VALUE2;..
msg = ""
for k, v in kwargs.items():
msg += "{0}={1};".format(k, v)
# <TIMESTAMP> <EVENT_TYPE> <MSG>
msg = "{0} {1} {2}".format(int(time.time()), event_type, msg.strip(";"))
try:
client.sendall(msg)
except socket.error as e:
logger.error("Unable to Send message: {0}".format(e))
|