openbsd-ports/net/rtg/pkg/MESSAGE
sthen c75e6d7329 import rtg,
RTG is a flexible, scalable, high-performance SNMP statistics
monitoring system. It is designed for enterprises and service
providers who need to collect time-series SNMP data from a large
number of targets quickly. All collected data is inserted into a
relational database that provides a common interface for applications
to generate complex queries and reports. RTG includes utilities
that generate configuration and target files, traffic reports, 95th
percentile reports and graphical data plots. These utilities may
be used to produce a web-based interface to the data.

    * Runs as a daemon, incurring no cron or kernel startup overhead
    * Written entirely in C for speed, incurring no interpreter overhead
    * Multi-threaded for asynchronous polling and database insertion
    * Inserts data into a relational database where complex queries
      and reports may be generated
    * Performs no data averaging in order to support billing, etc.
    * Can poll at sub-one-minute intervals 

Based on a submission from Tim Kornau via bernd@ and used at bsws
(hence high initial PKGNAME=...p5) - requested by henning@.
2008-07-19 13:52:22 +00:00

20 lines
657 B
Plaintext

To have rtgpoll start at boot time, you must edit
${SYSCONFDIR}/rtg/rtg.conf
and insert the following in /etc/rc.local.
if [ -x /usr/local/bin/rtgpoll ]; then
echo -n ' rtgpoll'
/usr/local/bin/rtgpoll -t target_file \
-c /etc/rtg/rtg.conf >/dev/null 2>&1 &
fi
This will start snmpd and use ${SYSCONFDIR}/rtg/rtg.conf for the
configuration. Be sure to read the manualpages of rtgpoll(1) and
rtgplot(1) to create a target_file.
Example files for the webfrontend of rtgplot have been installed to
/usr/local/share/examples/rtg/web/.
Example files and a Database creation Script have been installed to
/usr/local/share/examples/rtg/etc/.