-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
parsers.lde
68 lines (51 loc) · 2.13 KB
/
parsers.lde
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
# AWSLambdaStart event.
AWSLambdaStart =
^"START RequestId: " RequestID(string) " Version: " Version(string);
# AWSLambdaEnd event.
AWSLambdaEnd =
^"END RequestId: " RequestID(string);
# AWSLambdaReport event.
AWSLambdaReport =
^"REPORT RequestId: " RequestID(string) "\tDuration: " Duration(float64) " ms\tBilled Duration: " BilledDuration(float64) " ms\tMemory Size: " MemorySize(int) " MB\tMax Memory Used: " MaxMemoryUsed(int) " MB\t";
# AWSLambdaReportInit event.
AWSLambdaReportInit =
^"REPORT RequestId: " RequestID(string) "\tDuration: " Duration(float64) " ms\tBilled Duration: " BilledDuration(float64) " ms\tMemory Size: " MemorySize(int) " MB\tMax Memory Used: " MaxMemoryUsed(int) " MB\tInit Duration: " InitDuration(float64) " ms\t";
# AWSLambdaTimeout event.
AWSLambdaTimeout =
Timestamp(string) " " RequestID(string) " Task timed out after " Duration(float64) " seconds";
# Syslog event.
Syslog =
^"<" Priority(int) ">" SyslogVersion(int) " " Timestamp(string) " " Hostname(string) " " Appname(string) " " ProcID(string) " " MsgID(string) " " Message(string);
# HerokuDeploy event.
HerokuDeploy =
^"Deploy " Commit(string) " by user " User(string);
# HerokuRelease event.
HerokuRelease =
^"Release " Version(string) " created by user " User(string);
# HerokuRollback event.
HerokuRollback =
^"Rollback to " Version(string) " by user " User(string);
# HerokuBuild event.
HerokuBuild =
^"Build started by user " User(string);
# HerokuStateChange event.
HerokuStateChange =
^"State changed from " From(string) " to " To(string);
# HerokuProcessExit event.
HerokuProcessExit =
^"Process exited with status " Status(int);
# HerokuProcessStart event.
HerokuProcessStart =
^"Starting process with command `" Command(string) "`";
# HerokuProcessListening event.
HerokuProcessListening =
^"Listening on " Port(int);
# HerokuConfigSet event.
HerokuConfigSet =
^"Set " Variables(string) " config vars by user " User(string);
# HerokuConfigRemove event.
HerokuConfigRemove =
^"Remove " Variables(string) " config vars by user " User(string);
# HerokuScale event.
HerokuScale =
^"Scaled to " Dynos(string) " by user " User(string);