osiris-agent 0.1.1__tar.gz → 0.1.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: osiris_agent
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: OSIRIS agent for ROS2/Humble
5
5
  Home-page: https://github.com/nicolaselielll/osiris_agent
6
6
  Author: Nicolas Tuomaala
@@ -938,7 +938,10 @@ class WebBridge(Node):
938
938
  def _get_telemetry_snapshot(self):
939
939
  """Return a snapshot of system telemetry (CPU, RAM, disk)."""
940
940
  return {
941
- 'cpu': psutil.cpu_percent(interval=None),
941
+ 'cpu': {
942
+ 'percent': psutil.cpu_percent(interval=None),
943
+ 'cores': psutil.cpu_count(logical=False),
944
+ },
942
945
  'ram': {
943
946
  'percent': psutil.virtual_memory().percent,
944
947
  'used_mb': psutil.virtual_memory().used / (1024 * 1024),
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: osiris_agent
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: OSIRIS agent for ROS2/Humble
5
5
  Home-page: https://github.com/nicolaselielll/osiris_agent
6
6
  Author: Nicolas Tuomaala
@@ -6,7 +6,7 @@ long_description = (HERE / "README.md").read_text(encoding="utf-8")
6
6
 
7
7
  setup(
8
8
  name='osiris_agent',
9
- version='0.1.1',
9
+ version='0.1.2',
10
10
  description='OSIRIS agent for ROS2/Humble',
11
11
  long_description=long_description,
12
12
  long_description_content_type="text/markdown",
File without changes
File without changes
File without changes