mirror of
https://git.freebsd.org/ports.git
synced 2025-06-19 03:30:32 -04:00
interface and disk statistics every 5 seconds. It sends this data on to symux for further processing. symon has been designed to inflict minimal performance and security impact -- it can be run as nobody on the system it monitors. symux is a non-priviledged daemon that listens to incoming symon traffic. symux can write the incoming symon streams into rrd files. Clients interested in monitoring machine state can also log into symux and receive data as ascii as it arrives. symon2web is a php script that can show the data stored in the rrd files. PR: ports/78416 Submitted by: Ulrich Spoerlein <q@uni.de>
14 lines
679 B
Text
14 lines
679 B
Text
--- symon/Makefile.orig Fri Mar 4 10:39:20 2005
|
|
+++ symon/Makefile Fri Mar 4 10:43:13 2005
|
|
@@ -26,9 +26,9 @@
|
|
clean:
|
|
rm -f conf.h symon symon.cat8 symon.core ${OBJS}
|
|
|
|
-install: symon symon.cat8 symon.conf
|
|
+install: symon symon.8 symon.conf
|
|
${INSTALL} -c -m 555 -g wheel -o root symon ${PREFIX}/${BINDIR}
|
|
- ${INSTALL} -c -m 444 -g wheel -o root symon.cat8 ${PREFIX}/${MANDIR}/cat8/symon.0
|
|
+ ${INSTALL} -c -m 444 -g wheel -o root symon.8 ${PREFIX}/${MANDIR}/man8/symon.8
|
|
${INSTALL} -d -m 555 -g bin -o root ${PREFIX}/${SHRDIR}
|
|
${INSTALL} -c -m 555 -g wheel -o root c_config.sh ${PREFIX}/${SHRDIR}
|
|
${INSTALL} -d -m 555 -g bin -o root ${PREFIX}/${EXADIR}
|