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

Hi.
Looks like, there is a typo in the output of the agent:

echo ‘<<<filesystem_df_total_>>>’
df -h --output=size --total | awk ‘END {print $1}’

need to remove the last character of token in the line with the echo, e.g.

#!/bin/sh
echo ‘<<<filesystem_df_total>>>’
df -h --output=size --total | awk ‘END {print $1}’

The token must be equal to the name parameter in the register statements.
Now the plugins should detect the data.

RG, Christian