From: Richard F. <gol...@gm...> - 2009-02-12 08:55:04
|
On Mon, Feb 2, 2009 at 8:39 AM, Buchan Milne <bg...@st...> wrote: > For those who didn't notice, I released 0.3.1-beta1 on 23 Jan. > > I would appreciate feedback from anyone who has run this. Release notes are > available on the links included below. Could the first line in a table use th instead of td? --- dm_tests.pm.DIST 2009-01-23 07:41:27.000000000 -0800 +++ dm_tests.pm 2009-02-12 00:37:44.000000000 -0800 @@ -1784,8 +1784,8 @@ $line =~ s/\|/ /g; } else { - $line =~ s/\|/<\/td><td>/g; - $table .= "<tr><td>$line</td></tr>\n"; + $line =~ s/\|/<\/th><th>/g; + $table .= "<tr><th>$line</th></tr>\n"; } next MSG_LINE; } Could the TABLE:rrd()'s other options be documented in docs/GRAPHING? I'm wondering if there's a way to set the second column as the filename (e.g. for the dell-poweredge temperature, so it could use "BMC Ambient" instead of "3"). From looking elsewhere in dm_tests.pm it seems I might be able to do it with name: or pri: but I'm not sure. Could TABLE:rrd be mentioned in docs/TEMPLATES? Perhaps something like: rrd See the GRAPHING document in the docs directory I ended up doing `grep rrd docs/*` trying to figure it out. Working well so far! |