-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathjsonarchive.exe.d.json
More file actions
36 lines (36 loc) · 1.31 KB
/
jsonarchive.exe.d.json
File metadata and controls
36 lines (36 loc) · 1.31 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
{
"$schema": "https://getseq.net/schema/app-definition/v2",
"name": "JSON Archive",
"description": "Record events to a set of newline-delimited JSON streams. The resulting files can be manipulated or imported back into Seq using `clef-tool` or `Serilog.Formatting.Compact.Reader` (C#).",
"allowReprocessing": false,
"executable": "jsonarchive.exe",
"platform": {
"win-x64": {
"executable": "win-x64\\jsonarchive.exe"
},
"linux-x64": {
"executable": "linux-x64/jsonarchive"
},
"linux-arm64": {
"executable": "linux-arm64/jsonarchive"
}
},
"settings": {
"fileSet": {
"displayName": "File set",
"helpText": "The full path and filename pattern to write, for example `C:\\Archive\\events-*.json`. The app will replace the wildcard `*` with a timestamp denoting the creation time of each file."
},
"readableFilenames": {
"inputType": "Checkbox",
"displayName": "Use human-readable filenames",
"helpText": "Use a human-readable datetime format (e.g. 2022-05-04T01_13_33Z) in filenames.",
"isOptional": true
},
"chunkSize": {
"displayName": "Chunk size",
"helpText": "The maximum size, in bytes, for each file in the set. The default is 104857600 (100 MB).",
"isOptional": true,
"inputType": "integer"
}
}
}