forked from indexdata/mod-harvester-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogLine.json
More file actions
26 lines (26 loc) · 683 Bytes
/
Copy pathlogLine.json
File metadata and controls
26 lines (26 loc) · 683 Bytes
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
{
"description": "A single log4j log statement from a harvest job.",
"type": "object",
"properties": {
"id" : {
"description": "Unique identifier (UUID) for the log line.",
"type": "string"
},
"timeStamp" : {
"description": "Date and time the log statement was created.",
"type": "string"
},
"logLevel" :{
"description": "The log4j log level (INFO, DEBUG, etc).",
"type": "string"
},
"jobLabel" : {
"description": "Harvester's identification of the job that created the log line.",
"type": "string"
},
"line" : {
"description": "The logged statement.",
"type": "string"
}
}
}