-
-
Notifications
You must be signed in to change notification settings - Fork 383
Expand file tree
/
Copy pathrobot_fwk_log.json
More file actions
41 lines (41 loc) · 1.41 KB
/
robot_fwk_log.json
File metadata and controls
41 lines (41 loc) · 1.41 KB
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
{
"$schema": "https://lnav.org/schemas/format-v1.schema.json",
"robot_fwk_log": {
"title": "Robot Framework debug log",
"description": "Robot Framework debug log",
"url": [
"https://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#debug-file"
],
"regex": {
"op": {
"pattern": "(?<timestamp>\\d{8} \\d{2}:\\d{2}:\\d{2}\\.\\d{3}) - (?<level>TRACE|DEBUG|INFO|WARN|ERROR|FAIL) - \\+-* (?:START|END) (?<opid>[^[(]+)\\s+(?<body>.*)"
},
"std": {
"pattern": "(?<timestamp>\\d{8} \\d{2}:\\d{2}:\\d{2}\\.\\d{3}) - (?<level>TRACE|DEBUG|INFO|WARN|ERROR|FAIL) - (?!\\+)(?<body>.*)"
}
},
"opid-field": "opid",
"value": {
"level": {
"kind": "string"
},
"timestamp": {
"kind": "string"
}
},
"partitions": {
"test-start": {
"description": "The start of a test",
"pattern": "START TEST: (?<name>[^[]+) \\["
}
},
"sample": [
{
"line": "20260327 11:34:21.908 - INFO - + START SUITE: Test Scheduler Plex [ ]"
},
{
"line": "20260327 11:34:21.909 - DEBUG - Test timeout 5 minutes active. 300.0 seconds left."
}
]
}
}