diff options
author | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-12-29 15:09:37 +0000 |
---|---|---|
committer | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-12-29 15:09:37 +0000 |
commit | ed1ee897100c57f389499656cd9114fc936796a2 (patch) | |
tree | e048ec92275d3ef9c0b0b64ba0460a25945b99fd /openwrt/package/collectd | |
parent | 9ff4789defdfffe204015aa792fe199274d931d1 (diff) |
Added collectd, thanks to Florian Forster
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2796 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/collectd')
-rw-r--r-- | openwrt/package/collectd/Config.in | 43 | ||||
-rw-r--r-- | openwrt/package/collectd/Makefile | 101 | ||||
-rwxr-xr-x | openwrt/package/collectd/files/S80collectd | 17 | ||||
-rw-r--r-- | openwrt/package/collectd/ipkg/collectd.control | 6 |
4 files changed, 167 insertions, 0 deletions
diff --git a/openwrt/package/collectd/Config.in b/openwrt/package/collectd/Config.in new file mode 100644 index 0000000000..5f9f85ea30 --- /dev/null +++ b/openwrt/package/collectd/Config.in @@ -0,0 +1,43 @@ +menu "collectd........................... Lightweight system statistics collection daemon" + +config BR2_PACKAGE_COLLECTD + prompt "collectd........................... Lightweight system statistics collection daemon" + tristate + default m if CONFIG_DEVEL + help + collectd is a small daemon which collects system information + every 10 seconds. The values are then sent to a multicast group + to be stored in RRD files by a server process. + + http://verplant.org/collectd/ + +config BR2_PACKAGE_COLLECTD_CPU + prompt "Enable cpu support" + bool + default y + depends BR2_PACKAGE_COLLECTD + +config BR2_PACKAGE_COLLECTD_LOAD + prompt "Enable load support" + bool + default y + depends BR2_PACKAGE_COLLECTD + +config BR2_PACKAGE_COLLECTD_MEMORY + prompt "Enable memory support" + bool + default y + depends BR2_PACKAGE_COLLECTD + +config BR2_PACKAGE_COLLECTD_PING + prompt "Enable ping support" + bool + default y + depends BR2_PACKAGE_COLLECTD + +config BR2_PACKAGE_COLLECTD_TRAFFIC + prompt "Enable traffic support" + bool + default y + depends BR2_PACKAGE_COLLECTD +endmenu diff --git a/openwrt/package/collectd/Makefile b/openwrt/package/collectd/Makefile new file mode 100644 index 0000000000..fd38dde8f8 --- /dev/null +++ b/openwrt/package/collectd/Makefile @@ -0,0 +1,101 @@ +# $Id: Makefile 2467 2005-11-13 00:31:21Z nbd $ + +include $(TOPDIR)/rules.mk + +PKG_NAME:=collectd +PKG_VERSION:=3.5.1 +PKG_RELEASE:=1 +PKG_MD5SUM:=46a4b81e46d3bb58faab1d603649d737 + +PKG_SOURCE_URL:=http://verplant.org/collectd/files +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_CAT:=zcat + +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) +PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install + +include $(TOPDIR)/package/rules.mk + +$(eval $(call PKG_template,COLLECTD,collectd,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) + +ifneq ($(BR2_PACKAGE_COLLECTD_CPU),y) +DISABLE_CPU:=--disable-cpu +endif +ifneq ($(BR2_PACKAGE_COLLECTD_LOAD),y) +DISABLE_LOAD:=--disable-load +endif +ifneq ($(BR2_PACKAGE_COLLECTD_MEMORY),y) +DISABLE_MEMORY:=--disable-memory +endif +ifneq ($(BR2_PACKAGE_COLLECTD_PING),y) +DISABLE_PING:=--disable-ping +endif +ifneq ($(BR2_PACKAGE_COLLECTD_TRAFFIC),y) +DISABLE_TRAFFIC:=--disable-traffic +endif + +$(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared + (cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \ + $(TARGET_CONFIGURE_OPTS) \ + CFLAGS="$(strip $(TARGET_CFLAGS))" \ + CPPFLAGS="-I$(STAGING_DIR)/usr/include" \ + LDFLAGS="-L$(STAGING_DIR)/usr/lib" \ + ./configure \ + --target=$(GNU_TARGET_NAME) \ + --host=$(GNU_TARGET_NAME) \ + --build=$(GNU_HOST_NAME) \ + --program-prefix="" \ + --program-suffix="" \ + --prefix=/usr \ + --exec-prefix=/usr \ + --bindir=/usr/bin \ + --datadir=/usr/share \ + --includedir=/usr/include \ + --infodir=/usr/share/info \ + --libdir=/usr/lib \ + --libexecdir=/usr/lib \ + --localstatedir=/var \ + --mandir=/usr/share/man \ + --sbindir=/usr/sbin \ + --sysconfdir=/etc \ + --enable-shared \ + --disable-static \ + --disable-debug \ + $(DISABLE_CPU) \ + $(DISABLE_LOAD) \ + $(DISABLE_MEMORY) \ + $(DISABLE_PING) \ + $(DISABLE_TRAFFIC) \ + --disable-cpufreq \ + --disable-disk \ + --disable-hddtemp \ + --disable-nfs \ + --disable-processes \ + --disable-sensors \ + --disable-serial \ + --disable-swap \ + --disable-tape \ + --disable-users \ + ); + touch $(PKG_BUILD_DIR)/.configured + +$(PKG_BUILD_DIR)/.built: $(PKG_BUILD_DIR)/.configured + $(MAKE) -C $(PKG_BUILD_DIR) + mkdir -p $(PKG_INSTALL_DIR) + $(MAKE) -C $(PKG_BUILD_DIR) \ + DESTDIR="$(PKG_INSTALL_DIR)" \ + install + touch $(PKG_BUILD_DIR)/.built + +$(IPKG_COLLECTD): + install -d -m0755 $(IDIR_COLLECTD)/etc/init.d + install -d -m0755 $(IDIR_COLLECTD)/usr/sbin + install -d -m0755 $(IDIR_COLLECTD)/usr/lib/collectd + install -d -m0755 $(IDIR_COLLECTD)/var/lib/collectd + install -d -m0755 $(IDIR_COLLECTD)/var/run + cp -fpR ./files/S80collectd $(IDIR_COLLECTD)/etc/init.d/ + cp -fpR $(PKG_INSTALL_DIR)/usr/sbin/collectd $(IDIR_COLLECTD)/usr/sbin/ + cp -fpR $(PKG_INSTALL_DIR)/usr/lib/collectd/*.so $(IDIR_COLLECTD)/usr/lib/collectd/ + $(RSTRIP) $(IDIR_COLLECTD) + $(IPKG_BUILD) $(IDIR_COLLECTD) $(PACKAGE_DIR) + diff --git a/openwrt/package/collectd/files/S80collectd b/openwrt/package/collectd/files/S80collectd new file mode 100755 index 0000000000..aa767fbc48 --- /dev/null +++ b/openwrt/package/collectd/files/S80collectd @@ -0,0 +1,17 @@ +#!/bin/sh + +BINARY="/usr/sbin/collectd" +PIDFILE="/var/run/collectd.pid" +DATADIR="/var/lib/collectd" + +[ -x "$BINARY" ] || exit 1; + +if [ -e "$PIDFILE" ] +then + kill $(cat "$PIDFILE") 2>/dev/null + sleep 1 +fi + +[ -d "$DATADIR" ] || mkdir -p "$DATADIR"; + +$BINARY diff --git a/openwrt/package/collectd/ipkg/collectd.control b/openwrt/package/collectd/ipkg/collectd.control new file mode 100644 index 0000000000..f8febfbb3d --- /dev/null +++ b/openwrt/package/collectd/ipkg/collectd.control @@ -0,0 +1,6 @@ +Package: collectd +Priority: optional +Section: console +Maintainer: Florian Forster <octo@verplant.org> +Source: http://verplant.org/collectd/ +Description: System statistics collection daemon |