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
698 B
Text
14 lines
698 B
Text
--- symux/Makefile.orig Fri Mar 4 10:43:43 2005
|
|
+++ symux/Makefile Fri Mar 4 10:44:01 2005
|
|
@@ -17,9 +17,9 @@
|
|
clean:
|
|
rm -f conf.h symux symux.cat8 symux.core ${OBJS}
|
|
|
|
-install: symux symux.cat8 c_smrrds.sh symux.conf
|
|
+install: symux symux.8 c_smrrds.sh symux.conf
|
|
${INSTALL} -c -m 555 -g bin -o root symux ${PREFIX}/${BINDIR}
|
|
- ${INSTALL} -c -m 444 -g wheel -o root symux.cat8 ${PREFIX}/${MANDIR}/cat8/symux.0
|
|
+ ${INSTALL} -c -m 444 -g wheel -o root symux.8 ${PREFIX}/${MANDIR}/man8/symux.8
|
|
${INSTALL} -d -m 555 -g bin -o root ${PREFIX}/${SHRDIR}
|
|
${INSTALL} -c -m 544 -g bin -o root c_smrrds.sh ${PREFIX}/${SHRDIR}
|
|
${INSTALL} -d -m 555 -g bin -o root ${PREFIX}/${EXADIR}
|