Skip to content

Add needrestart_info.py to monitore needrestart. #195

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

Merged
Merged
Changes from 1 commit
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
15 changes: 11 additions & 4 deletions needrestart_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,10 +145,17 @@ def write_sessions(registry, needrestart_data):
def main():
registry = CollectorRegistry()

needrestart_output = subprocess.run(
["needrestart", "-b"], capture_output=True, text=True
).stdout
needrestart_data = NeedRestartData(needrestart_output)
try:
needrestart_output = subprocess.run(
["needrestart", "-b"], capture_output=True, text=True, check=True
).stdout
needrestart_data = NeedRestartData(needrestart_output)
except subprocess.CalledProcessError as e:
print(f"Error executing needrestart:\n{e}")
sys.exit(1)
except Exception as e:
print(f"An unexpected error occurred:\n{e}")
sys.exit(1)

write_timestamp(registry, needrestart_data)
write_kernel(registry, needrestart_data)
Expand Down