github.com/grafana/pyroscope@v1.18.0/.vscode/launch.json (about) 1 { 2 // Use IntelliSense to learn about possible attributes. 3 // Hover to view descriptions of existing attributes. 4 // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 "version": "0.2.0", 6 "configurations": [ 7 { 8 "name": "pyroscope", 9 "type": "go", 10 "request": "launch", 11 "mode": "auto", 12 "program": "${workspaceFolder}/cmd/pyroscope", 13 }, 14 { 15 "name": "canary-exporter", 16 "type": "go", 17 "request": "launch", 18 "mode": "auto", 19 "program": "${workspaceFolder}/cmd/profilecli", 20 "args": [ 21 "canary-exporter" 22 ] 23 } 24 ], 25 "compounds": [ 26 { 27 "name": "canary+pyroscope", 28 "configurations": [ 29 "pyroscope", 30 "canary-exporter" 31 ], 32 "stopAll": true 33 } 34 ] 35 }