Client Stats, Active BSSID status, incorporate Radio/VIF MacAddresses now available

This commit is contained in:
Mike Hansen
2020-06-17 13:43:35 -04:00
parent a7d3cf1fbe
commit 352ced0bbb
3 changed files with 272 additions and 166 deletions

View File

@@ -50,7 +50,7 @@ public class ConnectusOvsdbClient implements ConnectusOvsdbClientInterface {
@org.springframework.beans.factory.annotation.Value("${connectus.ovsdb.listenPort:6640}")
private int ovsdbListenPort;
@org.springframework.beans.factory.annotation.Value("${connectus.manager.collectionIntervalSec.deviceStats:10}")
@org.springframework.beans.factory.annotation.Value("${connectus.manager.collectionIntervalSec.deviceStats:120}")
private long collectionIntervalSecDeviceStats;
@Autowired

View File

@@ -344,7 +344,7 @@ public class OvsdbDao {
// $ ovsh i Wifi_Stats_Config reporting_interval:=10
// radio_type:="2.4G" stats_type:="device"
updateColumns.put("reporting_interval", new Atom<>(10));
updateColumns.put("reporting_interval", new Atom<>(newValue));
updateColumns.put("radio_type", new Atom<>("2.4G"));
updateColumns.put("stats_type", new Atom<>("device"));