Implement export to remote syslog server (implement #4419)

This commit is contained in:
Alfredo Cardigliano 2020-11-09 18:40:24 +01:00
parent 1c73df18db
commit 841b476f59
9 changed files with 184 additions and 33 deletions

View file

@ -185,6 +185,10 @@ end
-- format an epoch
function format_utils.formatEpoch(epoch)
if epoch == nil then
epoch = os.time()
end
if epoch == 0 then
return("")
else