diff options
| author | Nathaniel Roach <nroach44@gmail.com> | 2014-07-31 13:26:59 +0800 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-07-31 23:26:23 +0200 |
| commit | c9f5a86eaeb16c76f8b1f9cb940d2207759dd8d3 (patch) | |
| tree | 796ca9ba7e82bf82106be76b66a13f908a130923 /package/bandwidthd/Config.in | |
| parent | 90b7d53cd18668729da49b097128fa4dcc7d9581 (diff) | |
| download | buildroot-c9f5a86eaeb16c76f8b1f9cb940d2207759dd8d3.tar.gz buildroot-c9f5a86eaeb16c76f8b1f9cb940d2207759dd8d3.zip | |
bandwidthd: new package
[Thomas: minor reformatting like removing trailing whitespaces,
wrapping to a shorter length Config.in help texts, etc.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/bandwidthd/Config.in')
| -rw-r--r-- | package/bandwidthd/Config.in | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/package/bandwidthd/Config.in b/package/bandwidthd/Config.in new file mode 100644 index 0000000000..c1f0ee14ce --- /dev/null +++ b/package/bandwidthd/Config.in @@ -0,0 +1,50 @@ +config BR2_PACKAGE_BANDWIDTHD + bool "bandwidthd" + depends on BR2_USE_MMU # fork() + select BR2_PACKAGE_LIBPNG + select BR2_PACKAGE_LIBPCAP + select BR2_PACKAGE_GD + help + BandwidthD - Bandwidth monitoring + + Provides a method to measure the bandwidth that travels + through the machine, grouped by subnet and IP. This + information can be stored locally in /var/lib/bandwidthd and + can be configured to generate static HTML pages which can be + hosted by a web server. + + It is highly recommended that the target has some way of + retaining the time between reboots. (e.g. NTP on boot or an + RTC) + + It is suggested to use sqlite for logfile storage but works + fine without, and can be completely ignored if the + postgresql portion is used. + + As upstream is no longer actively maintained, a fork is + available on github that works on making BandwidthD's build + process more compatible with buildroot's. + + Upstream: http://bandwidthd.sourceforge.net/ + Github fork: http://github.com/nroach44/bandwidthd + +if BR2_PACKAGE_BANDWIDTHD + +config BR2_PACKAGE_BANDWIDTHD_POSTGRESQL + bool "enable postgresql log target support" + depends on BR2_TOOLCHAIN_USES_GLIBC # postgresql + select BR2_PACKAGE_POSTGRESQL + help + Enable support for logging the bandwidthd data to a remote + (or local) postgresql server. This data can then be viewed + through a php site. See README in the source code + (github.com/nroach44/bandwidthd) for more information. + +config BR2_PACKAGE_BANDWIDTHD_SQLITE3 + bool "enable sqlite3 log storage" + select BR2_PACKAGE_SQLITE + help + Enable support for storing the aggregated data in an sqlite + db instead of a plain text file. + +endif |

