diff options
Diffstat (limited to 'applications/luci-app-statistics/root')
5 files changed, 65 insertions, 4 deletions
diff --git a/applications/luci-app-statistics/root/etc/config/luci_statistics b/applications/luci-app-statistics/root/etc/config/luci_statistics index 1ab9208c3f..d1fef13b6e 100644 --- a/applications/luci-app-statistics/root/etc/config/luci_statistics +++ b/applications/luci-app-statistics/root/etc/config/luci_statistics @@ -43,9 +43,9 @@ config statistics 'collectd_network' option enable '0' config statistics 'collectd_syslog' - option enable '0' - option LogLevel 'warning' - option NotifyLevel 'WARNING' + option enable '0' + option LogLevel 'warning' + option NotifyLevel 'WARNING' config statistics 'collectd_unixsock' option enable '0' @@ -59,6 +59,12 @@ config statistics 'collectd_apcups' option Host 'localhost' option Port '3551' +config statistics 'collectd_chrony' + option enable '0' + option Host '127.0.0.1' + option Port '323' + option Timeout '2' + config statistics 'collectd_conntrack' option enable '0' @@ -67,6 +73,10 @@ config statistics 'collectd_contextswitch' config statistics 'collectd_cpu' option enable '1' + option ReportByCpu '1' + option ReportByState '1' + option ShowIdle '0' + option ValuesPercentage '1' config statistics 'collectd_cpufreq' option enable '0' @@ -77,11 +87,15 @@ config statistics 'collectd_curl' config statistics 'collectd_df' option enable '0' option Devices '/dev/mtdblock/4' - option MountPoints '/jffs' + option MountPoints '/overlay' option FSTypes 'tmpfs' option IgnoreSelected '0' option ValuesPercentage '0' +config statistics 'collectd_dhcpleases' + option enable '0' + option Path '/tmp/dhcp.leases' + config statistics 'collectd_disk' option enable '0' option Disks 'hda1 hdb' @@ -109,6 +123,9 @@ config statistics 'collectd_interface' option Interfaces 'br-lan' option IgnoreSelected '0' +config statistics 'collectd_ipstatistics' + option enable '0' + config statistics 'collectd_iptables' option enable '0' @@ -158,6 +175,9 @@ config statistics 'collectd_olsrd' option Port '2006' option Host '127.0.0.1' +config statistics 'collectd_openvpn' + option enable '0' + config statistics 'collectd_ping' option enable '0' option TTL '127' @@ -171,6 +191,11 @@ config statistics 'collectd_processes' config statistics 'collectd_sensors' option enable '0' +config statistics 'collectd_snmp6' + option enable '0' + option Interfaces 'br-lan' + option IgnoreSelected '0' + config statistics 'collectd_splash_leases' option enable '0' diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/chrony.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/chrony.json new file mode 100644 index 0000000000..1eea36a5a5 --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/chrony.json @@ -0,0 +1,9 @@ +{ + "title": "Chrony", + "category": "network", + "legend": [ + ["Host", "Port", "Timeout"], + [], + [] + ] +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dhcpleases.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dhcpleases.json new file mode 100644 index 0000000000..e6d5450ebf --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dhcpleases.json @@ -0,0 +1,9 @@ +{ + "title": "Dhcpleases", + "category": "network", + "legend": [ + [], + [], + ["Path"] + ] +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json new file mode 100644 index 0000000000..097c4204ab --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json @@ -0,0 +1,9 @@ +{ + "title": "IP-Statistics", + "category": "network", + "legend": [ + [], + [], + [] + ] +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/snmp6.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/snmp6.json new file mode 100644 index 0000000000..175b21e50a --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/snmp6.json @@ -0,0 +1,9 @@ +{ + "title": "Snmp6", + "category": "network", + "legend": [ + [], + ["IgnoreSelected"], + ["Interfaces"] + ] +} |