xref: /OK3568_Linux_fs/buildroot/package/dstat/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config BR2_PACKAGE_DSTAT
2	bool "dstat"
3	depends on BR2_USE_WCHAR # python
4	depends on BR2_USE_MMU # python
5	depends on BR2_TOOLCHAIN_HAS_THREADS # python
6	depends on !BR2_STATIC_LIBS # python
7	select BR2_PACKAGE_PYTHON3 if !BR2_PACKAGE_PYTHON
8	help
9	  Dstat, written in Python, is a versatile replacement for
10	  vmstat, iostat, netstat and ifstat. Dstat overcomes some of
11	  their limitations and adds some extra features, more counters
12	  and flexibility. Dstat is handy for monitoring systems during
13	  performance tuning tests, benchmarks or troubleshooting.
14	  Dstat allows you to view all of your system resources in
15	  real-time, you can e.g. compare disk utilization in
16	  combination with interrupts from your IDE controller, or
17	  compare the network bandwidth numbers directly with the disk
18	  throughput (in the same interval).
19
20	  Note that to get proper output, your terminal size should be
21	  known by the termios subsystem. This can be done by running
22	  the 'resize' utility of busybox.
23
24	  http://dag.wieers.com/home-made/dstat/
25
26comment "dstat needs a toolchain w/ wchar, threads, dynamic library"
27	depends on BR2_USE_MMU
28	depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
29