-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathreframe.config.json
More file actions
70 lines (70 loc) · 1.55 KB
/
reframe.config.json
File metadata and controls
70 lines (70 loc) · 1.55 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"version": "1.0",
"packages": [
{
"path": "/packages/swift-cbpr",
"enabled": true
}
],
"server": {
"host": "0.0.0.0",
"port": 3000,
"runtime": {
"tokio_worker_threads": "auto",
"thread_name_prefix": "reframe-worker"
}
},
"logging": {
"format": "compact",
"level": "info",
"show_target": false,
"show_thread": false,
"show_file_location": false,
"show_span_events": false,
"file_output": {
"enabled": false,
"directory": "./logs",
"file_prefix": "reframe",
"rotation": "daily"
}
},
"api_docs": {
"enabled": true,
"title": "Reframe API",
"version": "3.1.1",
"description": "A Universal Message Transformation Engine",
"contact": {
"name": "Plasmatic Team",
"email": "enquires@goplasmatic.io"
},
"license": {
"name": "Apache 2.0",
"identifier": "Apache-2.0",
"url": "https://opensource.org/license/apache-2-0"
},
"external_docs_url": "https://sandbox.goplasmatic.io",
"server_url": "http://localhost:3000"
},
"database": {
"type": "mongodb",
"connection": {
"uri": "mongodb://localhost:27017",
"timeout_ms": 5000,
"pool": {
"max_size": 10,
"min_size": 2,
"max_idle_time_ms": 60000
}
},
"storage": {
"database": "reframe",
"collection": "reframe_audit"
},
"options": {
"publish_mode": "async",
"persist_transform": true,
"persist_validate": false,
"persist_generate": false
}
}
}