Python 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...