Own check for monitoring total disk usage of a host not working

Hi.
You need to fill the check function with a check logic. The example was only to bring you on the right way to get the data from the agent and discover the chekcs. Now it’s on you to finish the plugin for your needs. If you want to see only the value you get, you can write the check function like this:

def check_filesystem_df_total(item, params, section):
    yield Result(state=State.OK, summary=f"Total: {section[0][0]}")

RG, Christian