Client fix
This commit is contained in:
Vendored
+26
-2
@@ -5,10 +5,34 @@
|
|||||||
"version": "0.2.0",
|
"version": "0.2.0",
|
||||||
"configurations": [
|
"configurations": [
|
||||||
{
|
{
|
||||||
"name": "esDashboard",
|
"name": "Server",
|
||||||
"type": "cppdbg",
|
"type": "cppdbg",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"program": "${workspaceFolder}/bin/Debug/bin/esDashboard",
|
"program": "${workspaceFolder}/bin/Debug/bin/esDashboard-Server",
|
||||||
|
"args": [],
|
||||||
|
"stopAtEntry": false,
|
||||||
|
"cwd": "${fileDirname}",
|
||||||
|
"environment": [],
|
||||||
|
"externalConsole": false,
|
||||||
|
"MIMode": "gdb",
|
||||||
|
"setupCommands": [
|
||||||
|
{
|
||||||
|
"description": "Enable pretty-printing for gdb",
|
||||||
|
"text": "-enable-pretty-printing",
|
||||||
|
"ignoreFailures": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"description": "Set Disassembly Flavor to Intel",
|
||||||
|
"text": "-gdb-set disassembly-flavor intel",
|
||||||
|
"ignoreFailures": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Client",
|
||||||
|
"type": "cppdbg",
|
||||||
|
"request": "launch",
|
||||||
|
"program": "${workspaceFolder}/bin/Debug/bin/esDashboard-Client",
|
||||||
"args": [],
|
"args": [],
|
||||||
"stopAtEntry": false,
|
"stopAtEntry": false,
|
||||||
"cwd": "${fileDirname}",
|
"cwd": "${fileDirname}",
|
||||||
|
|||||||
@@ -7,6 +7,6 @@ namespace config::client
|
|||||||
{
|
{
|
||||||
struct CollectorConfig
|
struct CollectorConfig
|
||||||
{
|
{
|
||||||
std::vector<std::vector<std::string>> disks{{{"R", "/"}}};
|
std::vector<std::vector<std::string>> disks{{"R", "/"}};
|
||||||
};
|
};
|
||||||
} // namespace config::client
|
} // namespace config::client
|
||||||
|
|||||||
Reference in New Issue
Block a user