From: Richard F. <gol...@gm...> - 2009-11-06 11:01:33
|
On Sat, Oct 31, 2009 at 00:12, Simone Stanzani <de...@gm...> wrote: > my problem is this. with the template cisco-asa in the test page if_load i > see the graphics, otherwise in test page if_dsc I don t see graphics :-( [snip] > if_dsc graphics appear in "trends page" but not "if_dsc page" To add if_dsc, first take a look at web/hobbitsvc.c in the source. There's a line near the top: static char *multigraphs = ",column,column,column,column,"; Append the desired --multigraphs setting to CGI_SVC_OPTS in your server/etc/hobbitcgi.cfg: CGI_SVC_OPTS="--env=/home/hobbit/server/etc/hobbitserver.cfg --no-svcid --history=top --multigraphs=disk,if_load,if_dsc" Note that, while the string assignment in web/hobbitsvc.c both begins and ends with a comma, the variable in the cgi neither begins nor ends with a comma. |