forked from Github/frigate
Implement general page of system graphs (#10815)
* Reorganize stats and show graphs in system metrics * Break apart all cpu / mem graphs * Auto update stats * Show camera graphs * Get system graphs working for inference time * Update stats every 10 seconds, keeping the last 10 minutes * Use types for thresholds * Use keys api * Break system metrics into different pages * Add dialog for viewing and copying vainfo * remove unused for now * Formatting * Make tooltip match theme * Make betters color in light mode * Include gpu * Make scaling consistent * Fix name * address feedback
This commit is contained in:
@@ -12,24 +12,24 @@ export default defineConfig({
|
||||
server: {
|
||||
proxy: {
|
||||
"/api": {
|
||||
target: "http://192.168.50.106:5000",
|
||||
target: "http://localhost:5000",
|
||||
ws: true,
|
||||
},
|
||||
"/vod": {
|
||||
target: "http://192.168.50.106:5000",
|
||||
target: "http://localhost:5000",
|
||||
},
|
||||
"/clips": {
|
||||
target: "http://192.168.50.106:5000",
|
||||
target: "http://localhost:5000",
|
||||
},
|
||||
"/exports": {
|
||||
target: "http://192.168.50.106:5000",
|
||||
target: "http://localhost:5000",
|
||||
},
|
||||
"/ws": {
|
||||
target: "ws://192.168.50.106:5000",
|
||||
target: "ws://localhost:5000",
|
||||
ws: true,
|
||||
},
|
||||
"/live": {
|
||||
target: "ws://192.168.50.106:5000",
|
||||
target: "ws://localhost:5000",
|
||||
changeOrigin: true,
|
||||
ws: true,
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user