Changeset 240
- Timestamp:
- 24/06/04 16:32:18 (8 years ago)
- Files:
-
- trunk/ChangeLog (modified) (1 diff, 1 prop)
- trunk/INSTALL (modified) (1 diff, 1 prop)
- trunk/Makefile (modified) (2 diffs, 1 prop)
- trunk/Makefile.config (modified) (1 diff, 1 prop)
- trunk/README-apache-cgi.in (added)
- trunk/server/Munin.pm.in (modified) (2 diffs, 1 prop)
- trunk/server/munin-graph.in (modified) (2 diffs, 1 prop)
- trunk/server/munin-html.in (modified) (2 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ChangeLog
- Property cvs2svn:cvs-rev changed from 1.107 to 1.108
r239 r240 14 14 * Added dist-directory for Solaris packages. 15 15 * Created munin-cgi-graph, which creates dynamic graphs. 16 * Added munin.conf option "output_graphs (cgi|cron)" which defaults to cron. 16 * Added munin.conf option "graph_strategy (cgi|cron)" which defaults to 17 cron. 17 18 * Bugfix in cdef calculations. 18 19 trunk/INSTALL
- Property cvs2svn:cvs-rev changed from 1.3 to 1.4
r48 r240 10 10 - create a cron-entry to run "munin-cron" as the user "munin" every 5 11 11 minutes 12 - if you want to use the dynamic graphs, configure the cgi directory 13 (an example for apache can be found in README-apache-cgi). 12 14 13 15 To install the documentation: trunk/Makefile
- Property cvs2svn:cvs-rev changed from 1.16 to 1.17
r209 r240 44 44 $(INSTALL) -m 0755 build/server/munin-graph $(LIBDIR)/ 45 45 $(INSTALL) -m 0755 build/server/munin-html $(LIBDIR)/ 46 $(INSTALL) -m 0755 build/server/munin-cgi-graph $(CGIDIR)/ 46 47 47 48 $(INSTALL) -m 0644 build/server/Munin.pm $(PERLLIB)/ … … 131 132 -e 's|@@VERSION@@|$(VERSION)|g' \ 132 133 -e 's|@@PLUGSTATE@@|$(PLUGSTATE)|g' \ 134 -e 's|@@CGIDIR@@|$(CGIDIR)|g' \ 133 135 $$file > build/$$destname; \ 134 136 done trunk/Makefile.config
- Property cvs2svn:cvs-rev changed from 1.4 to 1.5
r137 r240 30 30 # Server only - Output directory 31 31 HTMLDIR = $(PREFIX)/var/www 32 CGIDIR = $(HTMLDIR)/cgi 32 33 33 34 # Client only - Where to put RRD files and other intenal data trunk/server/Munin.pm.in
- Property cvs2svn:cvs-rev changed from 1.11 to 1.12
r238 r240 5 5 # 6 6 # $Log$ 7 # Revision 1.12 2004/06/24 14:32:17 jimmyo 8 # More work on output_graphs (renamed to graph_strategy, amongst others). 9 # 7 10 # Revision 1.11 2004/06/23 17:38:39 jimmyo 8 11 # * Created munin-cgi-graph, which creates dynamic graphs. … … 150 153 "nsca", "nsca_server", "nsca_config", "extinfo", "fetch_data", 151 154 "filename", "max_processes", "nagios", "info", "graph_info", 152 "graph_category", " output_graphs",155 "graph_category", "graph_strategy", 153 156 ); 154 157 trunk/server/munin-graph.in
- Property cvs2svn:cvs-rev changed from 1.20 to 1.21
r239 r240 6 6 # 7 7 # $Log$ 8 # Revision 1.21 2004/06/24 14:32:17 jimmyo 9 # More work on output_graphs (renamed to graph_strategy, amongst others). 10 # 8 11 # Revision 1.20 2004/06/23 17:48:06 jimmyo 9 12 # Bugfix in cdef calculations. … … 214 217 my $config= &munin_config ($conffile); 215 218 216 if (&munin_get_val ($config, " output_graphs", "cron") ne "cron" and $cron)219 if (&munin_get_val ($config, "graph_strategy", "cron") ne "cron" and $cron) 217 220 { # We're run from cron, but munin.conf says we use dynamic graph generation 218 221 exit 0; trunk/server/munin-html.in
- Property cvs2svn:cvs-rev changed from 1.17 to 1.18
r238 r240 4 4 # 5 5 # $Log$ 6 # Revision 1.18 2004/06/24 14:32:18 jimmyo 7 # More work on output_graphs (renamed to graph_strategy, amongst others). 8 # 6 9 # Revision 1.17 2004/06/23 17:38:40 jimmyo 7 10 # * Created munin-cgi-graph, which creates dynamic graphs. … … 232 235 $service{label}=$config->{domain}->{$domain}->{node}->{$node}->{client}->{$service}->{graph_title}; 233 236 234 my $method = &munin_get_val ($config, " output_graphs", "cron");237 my $method = &munin_get_val ($config, "graph_strategy", "cron"); 235 238 if ($method eq "cgi") 236 239 {
