mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-01 16:30:10 +00:00
Fix influxdb missing past comparison line
This commit is contained in:
parent
6849bddf86
commit
9e8b7e7f76
2 changed files with 2 additions and 2 deletions
|
|
@ -39,7 +39,7 @@ local function performQuery(tstart, tend, keep_total)
|
|||
else
|
||||
res = ts_utils.query(schema_id, tags, tstart, tend)
|
||||
|
||||
if(not keep_total) and (res.additional_series) then
|
||||
if(not keep_total) and (res) and (res.additional_series) then
|
||||
-- no need for total serie in normal queries
|
||||
res.additional_series.total = nil
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue