-
Notifications
You must be signed in to change notification settings - Fork 348
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
op mode: T6498: move uptime helpers to vyos.utils.system
to be able to call them from the new tech-support script
- Loading branch information
Showing
2 changed files
with
35 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright 2023 VyOS maintainers and contributors <[email protected]> | ||
# Copyright 2023-2024 VyOS maintainers and contributors <[email protected]> | ||
# | ||
# This library is free software; you can redistribute it and/or | ||
# modify it under the terms of the GNU Lesser General Public | ||
|
@@ -98,3 +98,33 @@ def load_as_module(name: str, path: str): | |
mod = importlib.util.module_from_spec(spec) | ||
spec.loader.exec_module(mod) | ||
return mod | ||
|
||
def get_uptime_seconds(): | ||
""" Returns system uptime in seconds """ | ||
from re import search | ||
from vyos.utils.file import read_file | ||
|
||
data = read_file("/proc/uptime") | ||
seconds = search("([0-9\.]+)\s", data).group(1) | ||
res = int(float(seconds)) | ||
|
||
return res | ||
|
||
def get_load_averages(): | ||
""" Returns load averages for 1, 5, and 15 minutes as a dict """ | ||
from re import search | ||
from vyos.utils.file import read_file | ||
from vyos.utils.cpu import get_core_count | ||
|
||
data = read_file("/proc/loadavg") | ||
matches = search(r"\s*(?P<one>[0-9\.]+)\s+(?P<five>[0-9\.]+)\s+(?P<fifteen>[0-9\.]+)\s*", data) | ||
|
||
core_count = get_core_count() | ||
|
||
res = {} | ||
res[1] = float(matches["one"]) / core_count | ||
res[5] = float(matches["five"]) / core_count | ||
res[15] = float(matches["fifteen"]) / core_count | ||
|
||
return res | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters