c75e6d7329
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@.
38 lines
833 B
Makefile
38 lines
833 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2008/07/19 13:52:22 sthen Exp $
|
|
|
|
SHARED_ONLY = Yes
|
|
|
|
COMMENT = SNMP statistics monitoring system
|
|
|
|
DISTNAME = rtg-0.7.4
|
|
PKGNAME = ${DISTNAME}p5
|
|
CATEGORIES = net
|
|
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=rtg/}
|
|
|
|
HOMEPAGE = http://rtg.sourceforge.net/
|
|
|
|
MAINTAINER = Stuart Henderson <sthen@openbsd.org>
|
|
|
|
# GPLv2+
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
WANTLIB = m crypto c z pthread fontconfig freetype
|
|
|
|
MODULES = converters/libiconv
|
|
|
|
LIB_DEPENDS = netsnmp.>=6::net/net-snmp \
|
|
mysqlclient_r::databases/mysql \
|
|
gd::graphics/gd \
|
|
jpeg::graphics/jpeg \
|
|
png::graphics/png
|
|
|
|
CONFIGURE_ENV = LOCALBASE=${LOCALBASE} \
|
|
LDFLAGS=-L${X11BASE}/lib
|
|
CONFIGURE_STYLE = autoconf
|
|
AUTOCONF_VERSION = 2.59
|
|
|
|
.include <bsd.port.mk>
|