Add Status,CaptureFPS,AnalysisFPS, CaptureBandWidth to MonitorStatus fields

pull/3087/head
Isaac Connor 2020-11-21 15:09:43 -05:00
parent 30363c1d4b
commit 98c2c6cccf
1 changed files with 8 additions and 0 deletions

View File

@ -39,6 +39,10 @@ $table = 'Monitor_Status';
$serial = $primary_key = 'MonitorId';
%fields = map { $_ => $_ } qw(
MonitorId
Status
CaptureFPS
AnalysisFPS
CaptureBandwidth
TotalEvents
TotalEventDiskSpace
HourEvents
@ -54,6 +58,10 @@ $serial = $primary_key = 'MonitorId';
);
%defaults = (
Status => 'Unknown',
CaptureFPS => undef,
AnalysisFPS => undef,
CaptureBandwidth => undef,
TotalEvents => undef,
TotalEventDiskSpace => undef,
HourEvents => undef,