We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d35793 commit 08a086dCopy full SHA for 08a086d
simvue/run.py
@@ -305,7 +305,7 @@ def processes(self) -> list[psutil.Process]:
305
306
return list(set(process_list))
307
308
- def _get_sysinfo(self, interval: float | None = None) -> dict[str, typing.Any]:
+ def _get_sysinfo(self) -> dict[str, typing.Any]:
309
"""Retrieve system administration
310
311
Parameters
@@ -357,6 +357,9 @@ def _heartbeat(
357
last_heartbeat = time.time()
358
last_res_metric_call = time.time()
359
360
+ if self._resources_metrics_interval:
361
+ self._add_metrics_to_dispatch(self._get_sysinfo(), join_on_fail=False)
362
+
363
while not heartbeat_trigger.is_set():
364
time.sleep(0.1)
365
0 commit comments