data stream working

This commit is contained in:
Dobromir Popov
2025-09-02 17:59:12 +03:00
parent 8068e554f3
commit c55175c44d
8 changed files with 1000 additions and 132 deletions

38
.vscode/tasks.json vendored
View File

@@ -4,15 +4,14 @@
{
"label": "Kill Stale Processes",
"type": "shell",
"command": "powershell",
"command": "python",
"args": [
"-Command",
"Get-Process python | Where-Object {$_.ProcessName -eq 'python' -and $_.MainWindowTitle -like '*dashboard*'} | Stop-Process -Force; Start-Sleep -Seconds 1"
"kill_dashboard.py"
],
"group": "build",
"presentation": {
"echo": true,
"reveal": "silent",
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": false,
@@ -106,6 +105,37 @@
"panel": "shared"
},
"problemMatcher": []
},
{
"label": "Debug Dashboard",
"type": "shell",
"command": "python",
"args": [
"debug_dashboard.py"
],
"group": "build",
"isBackground": true,
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "new",
"showReuseMessage": false,
"clear": false
},
"problemMatcher": {
"pattern": {
"regexp": "^.*$",
"file": 1,
"location": 2,
"message": 3
},
"background": {
"activeOnStart": true,
"beginsPattern": ".*Starting dashboard.*",
"endsPattern": ".*Dashboard.*ready.*"
}
}
}
]
}