mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-31 15:07:43 +00:00
package: Add sysstat tools
Signed-off-by: Lionel Landwerlin <lionel.landwerlin@openwide.fr> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
7d5d638a89
commit
0ad5869528
2
CHANGES
2
CHANGES
@ -1,7 +1,7 @@
|
|||||||
2009.11, Not yet released:
|
2009.11, Not yet released:
|
||||||
|
|
||||||
New packages: divine, gvfs, libarchive, libmicrohttpd,
|
New packages: divine, gvfs, libarchive, libmicrohttpd,
|
||||||
sdl_sound, swfdec
|
sdl_sound, swfdec, sysstat
|
||||||
|
|
||||||
Updated/fixed packages: autoconf, busybox, directfb, dnsmasq,
|
Updated/fixed packages: autoconf, busybox, directfb, dnsmasq,
|
||||||
e2fsprogs, festival, gstreamer, gst-plugins-bad, gst-plugins-base,
|
e2fsprogs, festival, gstreamer, gst-plugins-bad, gst-plugins-base,
|
||||||
|
@ -270,6 +270,7 @@ if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
|
|||||||
source "package/sfdisk/Config.in"
|
source "package/sfdisk/Config.in"
|
||||||
endif
|
endif
|
||||||
source "package/smartmontools/Config.in"
|
source "package/smartmontools/Config.in"
|
||||||
|
source "package/sysstat/Config.in"
|
||||||
if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
|
if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
|
||||||
# mdev
|
# mdev
|
||||||
source "package/udev/Config.in"
|
source "package/udev/Config.in"
|
||||||
|
38
package/sysstat/Config.in
Normal file
38
package/sysstat/Config.in
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
config BR2_PACKAGE_SYSSTAT
|
||||||
|
bool "sysstat"
|
||||||
|
help
|
||||||
|
The sysstat utilities are a collection of performance
|
||||||
|
monitoring tools for Linux. These include sar, sadf, mpstat,
|
||||||
|
iostat, pidstat and sa tools.
|
||||||
|
|
||||||
|
Some Features :
|
||||||
|
|
||||||
|
* Input / Output and transfer rate statistics (global, per
|
||||||
|
device, per partition, per network filesystem and per
|
||||||
|
Linux task / PID)
|
||||||
|
* CPU statistics (global, per CPU and per Linux task /
|
||||||
|
PID), including support for virtualization architectures
|
||||||
|
* Memory and swap space utilization statistics
|
||||||
|
* Virtual memory, paging and fault statistics
|
||||||
|
* Per-task (per-PID) memory and page fault statistics
|
||||||
|
* Global CPU and page fault statistics for tasks and all
|
||||||
|
their children
|
||||||
|
* Process creation activity
|
||||||
|
* Interrupt statistics (global, per CPU and per interrupt,
|
||||||
|
including potential APIC interrupt sources)
|
||||||
|
* Extensive network statistics: network interface activity
|
||||||
|
(number of packets and kB received and transmitted per
|
||||||
|
second, etc.) including failures from network devices;
|
||||||
|
network traffic statistics for IP, TCP, ICMP and UDP
|
||||||
|
protocols based on SNMPv2 standards; support for
|
||||||
|
IPv6-related protocols.
|
||||||
|
* NFS server and client activity
|
||||||
|
* Socket statistics
|
||||||
|
* Run queue and system load statistics
|
||||||
|
* Kernel internal tables utilization statistics
|
||||||
|
* System and per Linux task switching activity
|
||||||
|
* Swapping statistics
|
||||||
|
* TTY device activity
|
||||||
|
* Power management statistics
|
||||||
|
|
||||||
|
http://pagesperso-orange.fr/sebastien.godard/
|
26
package/sysstat/sysstat.mk
Normal file
26
package/sysstat/sysstat.mk
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
#############################################################
|
||||||
|
#
|
||||||
|
# sysstat
|
||||||
|
#
|
||||||
|
#############################################################
|
||||||
|
|
||||||
|
SYSSTAT_VERSION = 9.0.5
|
||||||
|
SYSSTAT_SOURCE = sysstat-$(SYSSTAT_VERSION).tar.bz2
|
||||||
|
SYSSTAT_SITE = http://pagesperso-orange.fr/sebastien.godard/
|
||||||
|
SYSSTAT_AUTORECONF = NO
|
||||||
|
SYSSTAT_LIBTOOL_PATCH = NO
|
||||||
|
SYSSTAT_INSTALL_STAGING = NO
|
||||||
|
SYSSTAT_INSTALL_TARGET = YES
|
||||||
|
|
||||||
|
# Should be --disable-man-group, it might be a little mistake in the
|
||||||
|
# configure.in script.
|
||||||
|
SYSSTAT_CONF_OPT = --enable-man-group
|
||||||
|
ifneq ($(BR2_HAVE_DOCUMENTATION),y)
|
||||||
|
SYSSTAT_CONF_OPT += --disable-documentation
|
||||||
|
endif
|
||||||
|
|
||||||
|
# The isag tool is a post processing script that depends on tcl/tk
|
||||||
|
# among other things. So we don't install it.
|
||||||
|
SYSSTAT_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) INSTALL_ISAG=n install
|
||||||
|
|
||||||
|
$(eval $(call AUTOTARGETS,package,sysstat))
|
Loading…
x
Reference in New Issue
Block a user