X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Ftape.c;h=b13cdbd84e6a18db69ff6f822c9f4bc9a9a3ea69;hb=3c27e2490525efba4a4864faa8493f0ae53e68db;hp=4671ed46aa0e7b4b957e30f4ced5e1ebfef626ac;hpb=55b439475d492599de5134536710180b39dac593;p=collectd.git diff --git a/src/tape.c b/src/tape.c index 4671ed46..b13cdbd8 100644 --- a/src/tape.c +++ b/src/tape.c @@ -1,6 +1,6 @@ /** * collectd - src/tape.c - * Copyright (C) 2005 Scott Garrett + * Copyright (C) 2005,2006 Scott Garrett * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -37,14 +37,14 @@ static char *tape_filename_template = "tape-%s.rrd"; /* 104857600 == 100 MB */ static char *tape_ds_def[] = { - "DS:rcount:COUNTER:25:0:U", - "DS:rmerged:COUNTER:25:0:U", - "DS:rbytes:COUNTER:25:0:U", - "DS:rtime:COUNTER:25:0:U", - "DS:wcount:COUNTER:25:0:U", - "DS:wmerged:COUNTER:25:0:U", - "DS:wbytes:COUNTER:25:0:U", - "DS:wtime:COUNTER:25:0:U", + "DS:rcount:COUNTER:"COLLECTD_HEARTBEAT":0:U", + "DS:rmerged:COUNTER:"COLLECTD_HEARTBEAT":0:U", + "DS:rbytes:COUNTER:"COLLECTD_HEARTBEAT":0:U", + "DS:rtime:COUNTER:"COLLECTD_HEARTBEAT":0:U", + "DS:wcount:COUNTER:"COLLECTD_HEARTBEAT":0:U", + "DS:wmerged:COUNTER:"COLLECTD_HEARTBEAT":0:U", + "DS:wbytes:COUNTER:"COLLECTD_HEARTBEAT":0:U", + "DS:wtime:COUNTER:"COLLECTD_HEARTBEAT":0:U", NULL }; static int tape_ds_num = 8;