37 lines
873 B
JSON
37 lines
873 B
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Standalone debug mode",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "debug",
|
|
"program": "${workspaceFolder}/pkg",
|
|
"env": {},
|
|
"args": [
|
|
"-standalone"
|
|
]
|
|
},
|
|
{
|
|
"name": "Attach to plugin backend in docker",
|
|
"type": "go",
|
|
"request": "attach",
|
|
"mode": "remote",
|
|
"port": 2345,
|
|
"host": "127.0.0.1",
|
|
"showLog": true,
|
|
"trace": "log",
|
|
"logOutput": "rpc",
|
|
"substitutePath": [
|
|
{
|
|
"from": "${workspaceFolder}",
|
|
"to": "/root/alexanderzobnin-zabbix-app"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|