- Possibility in queries to merge data from multiple interfaces to one
output with interface1+interface2 syntax
- Highlight current day in top list when visible
+ - Changes in interface specific detected bandwidth limits are reported
+ in the log
2.1 / 6-Dec-2018
if (cfg.bwdetectioninterval > 0 && (current - p->detected) > (cfg.bwdetectioninterval * 60)) {
speed = getifspeed(iface);
if (speed > 0) {
+ if (p->detected > 0 && speed != p->limit) {
+ snprintf(errorstring, 1024, "Detected bandwidth limit for \"%s\" changed from %" PRIu32 " Mbit to %" PRIu32 " Mbit.", iface, p->limit, speed);
+ printe(PT_Info);
+ }
p->limit = speed;
p->retries = 0;
p->detected = current;