Config.in 1.2 KB

12345678910111213141516171819202122232425262728
  1. config 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. Note that to get proper output, your terminal size should be
  20. known by the termios subsystem. This can be done by running
  21. the 'resize' utility of busybox.
  22. http://dag.wieers.com/home-made/dstat/
  23. comment "dstat needs a toolchain w/ wchar, threads, dynamic library"
  24. depends on BR2_USE_MMU
  25. depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS