logsene-cli
Version:
Logsene command-line interface
54 lines (53 loc) • 1.21 kB
JSON
{
// Use IntelliSense to learn about possible Node.js debug attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "search error warn -t 1m -s 1 --trace",
"program": "${workspaceRoot}/index.js",
"args": [
"search",
"error",
"warn",
"-t",
"1m",
"-s",
"1",
"--trace"
],
"console": "integratedTerminal"
},
{
"type": "node",
"request": "launch",
"name": "search -q tags:httpd -f request",
"program": "${workspaceRoot}/index.js",
"args": [
"search",
"-q",
"request",
"-f",
"@timestamp",
"--trace"
],
"console": "integratedTerminal"
},
{
"type": "node",
"request": "launch",
"name": "search -q error --trace",
"program": "${workspaceRoot}/index.js",
"args": [
"search",
"-q",
"error",
"--trace"
],
"console": "integratedTerminal"
}
]
}