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

Hi.

I think you need the following register settings:

def discover_filesystem_df_total(section):
    yield Service(item="Filesystem total")

register.check_plugin(
    name=“filesystem_df_total”,
    service_name=“%s”,
    discovery_function=discover_filesystem_df_total,    
    check_function=check_Filesystem_df_total,
)

RG, Christian