From 1d354fd87d4c07906e82d104ba8614d30ae9cbbe Mon Sep 17 00:00:00 2001 From: reinelt Date: Thu, 17 Jun 2004 06:23:43 +0000 Subject: [lcd4linux @ 2004-06-17 06:23:39 by reinelt] hash handling rewritten to solve performance issues git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@473 3ae390bd-cb1e-0410-b409-cd5a39f66f1f --- lcd4linux.conf.sample | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'lcd4linux.conf.sample') diff --git a/lcd4linux.conf.sample b/lcd4linux.conf.sample index 774c451..8028435 100644 --- a/lcd4linux.conf.sample +++ b/lcd4linux.conf.sample @@ -230,10 +230,10 @@ Widget Disk { class 'Text' # disk.[rw]blk return blocks, we assume a blocksize of 512 # to get the number in kB/s we would do blk*512/1024, which is blk/2 - expression (proc_stat::disk('.*', 'rblk', 500)+proc_stat::disk('.*', 'wblk', 500))/2 + # expression (proc_stat::disk('.*', 'rblk', 500)+proc_stat::disk('.*', 'wblk', 500))/2 # with kernel 2.6, disk_io disappeared from /proc/stat but moved to /proc/diskstat # therefore you have to use another function called 'diskstats': - #expression diskstats('.*', '.*_sectors', 500) + expression diskstats('.*', 'read_sectors', 500) + diskstats('.*', 'write_sectors', 500) prefix 'disk' postfix ' ' width 10 @@ -244,11 +244,11 @@ Widget Disk { Widget DiskBar { class 'Bar' - expression proc_stat::disk('.*', 'rblk', 500) - expression2 proc_stat::disk('.*', 'wblk', 500) + #expression proc_stat::disk('.*', 'rblk', 500) + #expression2 proc_stat::disk('.*', 'wblk', 500) # for kernel 2.6: - #expression diskstats('.*', 'read_sectors', 500) - #expression2 diskstats('.*', 'write_sectors', 500) + expression diskstats('.*', 'read_sectors', 500) + expression2 diskstats('.*', 'write_sectors', 500) length 14 direction 'E' update tack @@ -609,9 +609,9 @@ Layout testMySQL { #Display 'CF631' #Display 'CF632' #Display 'CF633' -#Display 'Curses' +Display 'Curses' #Display 'USBLCD' -Display 'T6963-240x64' +#Display 'T6963-240x64' #Display 'XWindow' #Display 'Image' -- cgit v1.2.3