Files
wlan-cloud-analytics/src/Dashboard.cpp
2023-02-21 13:38:18 -08:00

22 lines
516 B
C++

//
// License type: BSD 3-Clause License
// License copy: https://github.com/Telecominfraproject/wlan-cloud-ucentralgw/blob/master/LICENSE
//
// Created by Stephane Bourque on 2021-03-04.
// Arilia Wireless Inc.
//
#include "Dashboard.h"
#include "framework/utils.h"
namespace OpenWifi {
void AnalyticsDashboard::Create() {
uint64_t Now = Utils::Now();
if (LastRun_ == 0 || (Now - LastRun_) > 120) {
DB_.reset();
// Todo: call dashboard creation code.
LastRun_ = Now;
}
}
} // namespace OpenWifi