Vandana Panditvandanapandit.hashnode.dev·Jul 20, 2024Day 10: Shell Script for CPU, Memory, Disk, and Service MonitoringIn this article I have share the shell script that monitors system metrics like CPU usage, memory usage, and disk space usage. The script will provide a user-friendly interface, allow continuous monitoring with a specified sleep interval, and extend ...Discuss#90daysofdevops
Jitheshjitheshpk.com·Apr 9, 2024Resource utilization check using python FabricPython Fabric module can be used for checking the resource utilization in a server remotely. # Import Modules import argparse from fabric import Connection # Define user inputs parser = argparse.ArgumentParser() parser.add_argument("--hostname", req...Discussfabric module