From f42c2963a210a7fc04d899c4dd9725adff704805 Mon Sep 17 00:00:00 2001 From: justme1968 Date: Fri, 8 Feb 2013 15:57:21 +0000 Subject: [PATCH] added documentation for 'get filesystems' git-svn-id: https://fhem.svn.sourceforge.net/svnroot/fhem/trunk/fhem@2665 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- FHEM/32_SYSSTAT.pm | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/FHEM/32_SYSSTAT.pm b/FHEM/32_SYSSTAT.pm index 7e1d89e17..8443d0bc9 100644 --- a/FHEM/32_SYSSTAT.pm +++ b/FHEM/32_SYSSTAT.pm @@ -68,6 +68,7 @@ SYSSTAT_Get($@) my $filesystems = $sys->get->{diskusage}; my $ret; + $ret .= " <= \n"; foreach my $filesystem (keys %$filesystems ) { $ret .= $filesystem ." <= ". $filesystems->{$filesystem}->{mountpoint} ."\n"; } @@ -208,8 +209,20 @@ SYSSTAT_GetUpdate($) free bytes for <mountpoint>
+ + Get +
    + get <name> <value> +

    + where value is one of

    +
  • filesystems
    + Lists the filesystems that can be monitored.
  • +

+ + Attributes +
  • filesystems
    List of comma separated filesystems (not mountpoints) that should be monitored.
    Examples: @@ -221,7 +234,7 @@ SYSSTAT_GetUpdate($) If set the usage is shown in percent. If not set the remaining free space in bytes is shown.
  • useregex
    If set the entries of the filesystems list are treated as regex.
  • -
+ =end html =cut