-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
41 lines (41 loc) · 893 Bytes
/
Copy pathplugin.json
File metadata and controls
41 lines (41 loc) · 893 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"id": "eventgen",
"name": "eventgen",
"description": "Event generator for Secoura Server.",
"version": "0.4.5",
"provides": [
{
"type": "collector",
"name": "eventgen-collector",
"conditions": [
{
"match": {
"os": "linux",
"arch": "x64"
},
"path": "./bin/eventgen-linux-x64",
"args": "generate"
},
{
"match": {
"os": "macos",
"arch": "x64"
},
"path": "./bin/eventgen-macos-x64",
"args": "generate"
},
{
"match": {
"os": "windows",
"arch": "x64"
},
"path": "./bin/eventgen-windows-x64.exe",
"args": "generate"
}
],
"source_name": "eventgen",
"line_breaker": "\n",
"interval": 3600000
}
]
}