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

Hi.

I hink you need to register also the agent section like this:

def parse_filesystem_df_total(string_table):
    section = string_table
    return section if section else None

register.agent_section(
    name = '_filesystem_df_total',
    parse_function = parse_filesystem_df_total,
)

RG, Christian