Update dataset definitions and chart configuration for improved performance
- Changed the sampling interval for the "Fast" dataset from 1 to 0.1 for finer granularity. - Adjusted the Chart.js plot configuration by setting the delay to 0 for real-time updates. - Removed "Test" from the active datasets in the system state and updated the last update timestamp.
This commit is contained in:
parent
3015fe4391
commit
61365240d6
File diff suppressed because it is too large
Load Diff
|
@ -14,7 +14,7 @@
|
|||
"id": "Fast",
|
||||
"name": "Fast",
|
||||
"prefix": "fast",
|
||||
"sampling_interval": 1
|
||||
"sampling_interval": 0.1
|
||||
},
|
||||
{
|
||||
"enabled": true,
|
||||
|
|
|
@ -702,7 +702,7 @@ const ChartjsPlot = ({ session, height = '400px' }) => {
|
|||
realtime: {
|
||||
duration: (config.time_window || 60) * 1000,
|
||||
refresh: sessionDataRef.current.refreshRate,
|
||||
delay: sessionDataRef.current.refreshRate * 2,
|
||||
delay: 0,
|
||||
frameRate: 30,
|
||||
pause: !session.is_active || session.is_paused,
|
||||
onRefresh: (chart) => {
|
||||
|
|
|
@ -4,11 +4,9 @@
|
|||
"should_stream": false,
|
||||
"active_datasets": [
|
||||
"Fast",
|
||||
"Test",
|
||||
"DAR"
|
||||
]
|
||||
},
|
||||
"auto_recovery_enabled": true,
|
||||
"last_update": "2025-08-17T10:38:11.919417",
|
||||
"plotjuggler_path": "C:\\Program Files\\PlotJuggler\\plotjuggler.exe"
|
||||
"last_update": "2025-08-17T10:48:18.548096"
|
||||
}
|
Loading…
Reference in New Issue