-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdefault_conf.json.in
163 lines (163 loc) · 4.05 KB
/
default_conf.json.in
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
{
"clock": {
"clocksource_type": "CPP_STYLE",
"drift_cal_sleep_sec": 10,
"drift_cal_sleep_nsec": 0
},
"authentication": {
"auth_type": "RBAC",
"module_location": "/path/to/auth_module"
},
"chrono_visor": {
"VisorClientPortalService": {
"rpc": {
"rpc_implementation": "Thallium_sockets",
"protocol_conf": "ofi+sockets",
"service_ip": "127.0.0.1",
"service_base_port": 5555,
"service_provider_id": 55
}
},
"VisorKeeperRegistryService": {
"rpc": {
"rpc_implementation": "Thallium_sockets",
"protocol_conf": "ofi+sockets",
"service_ip": "127.0.0.1",
"service_base_port": 8888,
"service_provider_id": 88
}
},
"Logging": {
"log": {
"type": "file",
"file": "chrono_visor.log",
"level": "debug",
"name": "ChronoVisor",
"filesize": 104857600,
"filenum": 3,
"flushlevel": "warning"
}
},
"delayed_data_admin_exit_in_secs": 3
},
"chrono_keeper": {
"RecordingGroup": 7,
"KeeperRecordingService": {
"rpc": {
"rpc_implementation": "Thallium_sockets",
"protocol_conf": "ofi+sockets",
"service_ip": "127.0.0.1",
"service_base_port": 6666,
"service_provider_id": 66
}
},
"KeeperDataStoreAdminService": {
"rpc": {
"rpc_implementation": "Thallium_sockets",
"protocol_conf": "ofi+sockets",
"service_ip": "127.0.0.1",
"service_base_port": 7777,
"service_provider_id": 77
}
},
"VisorKeeperRegistryService": {
"rpc": {
"rpc_implementation": "Thallium_sockets",
"protocol_conf": "ofi+sockets",
"service_ip": "127.0.0.1",
"service_base_port": 8888,
"service_provider_id": 88
}
},
"KeeperGrapherDrainService": {
"rpc": {
"rpc_implementation": "Thallium_sockets",
"protocol_conf": "ofi+sockets",
"service_ip": "127.0.0.1",
"service_base_port": 3333,
"service_provider_id": 33
}
},
"Logging": {
"log": {
"type": "file",
"file": "chrono_keeper.log",
"level": "debug",
"name": "ChronoKeeper",
"filesize": 1048576,
"filenum": 3,
"flushlevel": "warning"
}
},
"story_files_dir": "/tmp/"
},
"chrono_grapher": {
"RecordingGroup": 7,
"KeeperGrapherDrainService": {
"rpc": {
"rpc_implementation": "Thallium_sockets",
"protocol_conf": "ofi+sockets",
"service_ip": "127.0.0.1",
"service_base_port": 3333,
"service_provider_id": 33
}
},
"DataStoreAdminService": {
"rpc": {
"rpc_implementation": "Thallium_sockets",
"protocol_conf": "ofi+sockets",
"service_ip": "127.0.0.1",
"service_base_port": 4444,
"service_provider_id": 44
}
},
"VisorRegistryService": {
"rpc": {
"rpc_implementation": "Thallium_sockets",
"protocol_conf": "ofi+sockets",
"service_ip": "127.0.0.1",
"service_base_port": 8888,
"service_provider_id": 88
}
},
"Logging": {
"log": {
"type": "file",
"file": "chrono_grapher.log",
"level": "debug",
"name": "ChronoGrapher",
"filesize": 1048576,
"filenum": 3,
"flushlevel": "debug"
}
},
"DataStoreInternals": {
"max_story_chunk_size": 4096
},
"Extractors": {
"story_files_dir" : "/tmp"
}
},
"chrono_client": {
"VisorClientPortalService": {
"rpc": {
"rpc_implementation": "Thallium_sockets",
"protocol_conf": "ofi+sockets",
"service_ip": "127.0.0.1",
"service_base_port": 5555,
"service_provider_id": 55
}
},
"Logging": {
"log": {
"type": "file",
"file": "chrono_client.log",
"level": "debug",
"name": "ChronoClient",
"filesize": 1048576,
"filenum": 3,
"flushlevel": "warning"
}
}
}
}