path: nfs-ganesha_7.0-2/src/scripts/ganesha-top/ganesha-top.py
def get_ganesha_pid():
    try:
        return int(subprocess.run(["pidof", "-s", GaneshaProcess],
                                  stdout=subprocess.PIPE).stdout)
    except subprocess.CalledProcessError as e:
