-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
47 lines (47 loc) · 1.26 KB
/
manifest.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
{
"$schema": "http://json.schemastore.org/foxx-manifest",
"name": "foxx-tracer-collector",
"version": "0.0.8",
"description": "A collector service for foxx-tracer",
"keywords": [
"opentracing",
"distributed-tracing",
"apm"
],
"engines": {
"arangodb": ">=3.5.0"
},
"provides": {
"@RecallGraph/foxx-tracer-collector": "0.0.1"
},
"author": "Aditya Mukhopadhyay",
"license": "MIT",
"main": "main.js",
"scripts": {
"setup": "scripts/setup.js",
"teardown": "scripts/teardown.js",
"reportTraces": "scripts/reportTraces.js"
},
"configuration": {
"reporters": {
"description": "The namespaced reporters to use. Use comma-separated list for multiple reporters. Valid values are `noop`, and the keys in `reporters.json`.",
"default": "console",
"type": "string",
"required": false
},
"reported-span-ttl": {
"description": "The TTL (in seconds) for reported spans. A value < 300 is ignored and a TTL of 300 is used instead.",
"default": 3600,
"type": "number",
"required": true
},
"reporters-console": {
"type": "json",
"required": true,
"default": {
"stream": "debug"
},
"description": "Settings for the console reporter."
}
}
}