forked from LogentriesCommunity/le_appengine_py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogentries.py
56 lines (36 loc) · 1.26 KB
/
logentries.py
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
52
53
54
#!/usr/bin/env python
# coding: utf-8
#
# Logentries Python monitoring agent
# Copyright 2010,2011 Logentries, Jlizard
# Mark Lacomber <marklacomber@gmail.com>
#
VERSION = "1.0"
import logging, random
from google.appengine.api import taskqueue
def init(key, location):
if len(logging.getLogger('').handlers) <= 1:
logging.getLogger('').addHandler(PullQueue(key, location))
class PullQueue(logging.Handler):
def __init__(self, key, location):
logging.Handler.__init__(self)
self.addr = '%s/hosts/%s' %(key, location)
self.queue = taskqueue.Queue('logentries-pull-queue')
format = logging.Formatter('%(asctime)s : %(levelname)s, %(message)s', '%a %b %d %H:%M:%S %Z %Y')
self.setFormatter(format)
def send(self, msg):
try:
task = taskqueue.Task(method='PULL', name = str(random.randrange(1,10000000000)), params={'msg':msg, 'addr':self.addr})
self.queue.add(task)
except apiproxy_errors.OverQuotaError, message:
logging.error(message)
logging.error("URLFetch API Quota reached, unable to transmit logs to Logentries")
def handleError(self, record):
pass
def emit(self, record):
msg = self.format(record)
self.send(msg+'\n')
def flush(self):
pass
def close(self):
logging.Handler.close(self)