-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmylogger.py
71 lines (52 loc) · 2.31 KB
/
mylogger.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import boto3
import time
defaultLogGroup = 'MyCustomLogs/Logs'
defaultLogStream = 'LogStream'
class CWLog:
"""Represents a logger object that keeps track of cloudwatch logging variables
The logStreamName is the name given to this instance of the logger
A timestamp will be appended in the format "logStreamName_9999999999"
The logGroup is the cloudwatch group of logs to put this instance in
The region is the cloudwatch logs client region to use. Default is us-east-1.
"""
def __init__(self, logStreamName=defaultLogStream, logGroup=defaultLogGroup, region='us-east-1'):
self.cwl = boto3.client('logs', region_name=region)
# Check if the logGroup exists
logGroups = self.cwl.describe_log_groups(logGroupNamePrefix=logGroup)
if not logGroups['logGroups']:
# No logGroups match, need to create it
self.cwl.create_log_group(logGroupName=logGroup)
self.logGroup = logGroup
self.logStreamName = logStreamName + '_' + str(int(time.time() * 1000))
# Create the log stream for all logs in this log instance
self.cwl.create_log_stream(logGroupName=self.logGroup, logStreamName=self.logStreamName)
# Start of log
rsp = self.cwl.put_log_events(
logGroupName=self.logGroup,
logStreamName=self.logStreamName,
logEvents=[{
'timestamp': int(time.time() * 1000),
'message': 'Log started for ' + logStreamName
},
])
# Track the next Log token
self.nextSequenceToken = rsp['nextSequenceToken']
# Record the response to the object if it's needed
self.response = rsp
def log(self, dataToLog):
"""Add something to the existing log object"""
rsp = self.cwl.put_log_events(
logGroupName=self.logGroup,
logStreamName=self.logStreamName,
logEvents=[{
'timestamp': int(time.time() * 1000),
'message': dataToLog
},
],
sequenceToken=self.nextSequenceToken)
# update the Sequence token
self.nextSequenceToken = rsp['nextSequenceToken']
rsp['logged-value'] = dataToLog
print(dataToLog)
# Record the response in case the caller needs it
self.response = rsp