mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-06 20:46:19 +00:00
parent
1074059c2d
commit
1e82eb073b
10 changed files with 91 additions and 61 deletions
|
|
@ -153,6 +153,22 @@ void ThreadedActivityStats::luaTimeseriesStats(lua_State *vm) {
|
|||
|
||||
/* ******************************************* */
|
||||
|
||||
void ThreadedActivityStats::setNotExecutedAttivity(bool _not_executed) {
|
||||
not_executed = _not_executed;
|
||||
if(_not_executed)
|
||||
num_not_executed++;
|
||||
}
|
||||
|
||||
/* ******************************************* */
|
||||
|
||||
void ThreadedActivityStats::setSlowPeriodicActivity(bool _slow) {
|
||||
is_slow = _slow;
|
||||
if(_slow)
|
||||
num_is_slow++;
|
||||
}
|
||||
|
||||
/* ******************************************* */
|
||||
|
||||
void ThreadedActivityStats::lua(lua_State *vm) {
|
||||
lua_newtable(vm);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue