-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrules.json
51 lines (51 loc) · 1.48 KB
/
rules.json
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
{
"TimestampFormat": [
"\\d{2,4}\/\\d{2}\/\\d{2,4} \\d{2}:\\d{2}:\\d{2}",
"\\d{1,2}-[A-Za-z]{2,4}-\\d{2,4} \\d{1,2}:\\d{1,2}:\\d{1,2} (AM|PM)",
"\\d{1,4}\/\\d{1,2}\/\\d{1,4} \\d{1,2}:\\d{1,2}:\\d{1,2} (AM|PM)"
],
"VersionIdentifierStart": "[v",
"VersionIdentifierEnd": "]",
"RestartIdentifier": "\\[Application\\] Application started",
"ExceptionIdentifier": "Exception:",
"ExitIdentifier": "\\[Application\\] Application closed",
"CrashIdentifier": "\\[Application\\] Crash",
"AdditionalRestartLines": 5,
"AdditionalExceptionLines": 1,
"AdditionalExitLines": 5,
"AdditionalCrashLines": 0,
"Extract": [
{
"Name": "Username",
"IdentifierStart": "username=",
"IdentifierEnd": ";"
},
{
"Name": "Operating System",
"IdentifierStart": "os=",
"IdentifierEnd": ";"
}
],
"Count": [
{
"Name": "Server Errors",
"Identifier": "Internal Server Error"
},
{
"Name": "Incorrect password",
"Identifier": "Incorrect password"
},
{
"Name": "Corrupted Files",
"Identifier": "Corrupted file detected"
},
{
"Name": "Files Uploaded",
"Identifier": "File uploaded"
},
{
"Name": "Files Downloaded",
"Identifier": "File downloaded"
}
]
}