Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Added system diagnostic function #31

Merged
merged 1 commit into from
Oct 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions upsonic/remote/on_prem.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
import importlib.util
import cloudpickle

import psutil

from contextlib import contextmanager

import sys
Expand Down Expand Up @@ -303,6 +305,16 @@ def get_username(self):
except Exception as e:
return "to Upsonic"

def system_diagnostic(self):
diagnostic_data = {
"System Type": platform.system(),
"User Name": self.get_username(),
"Uptime (seconds)": round(time.time() - psutil.boot_time(), 2),
"CPU Usage (%)": psutil.cpu_percent(interval=1),
"RAM Usage (%)": psutil.virtual_memory().percent,
}
return json.dumps(diagnostic_data, indent=4)

def get_specific_version(self, package: str) -> int:
package_name = package.split("==")[0]
package_version = (
Expand Down
Loading