Syslog exportation
You can export NxFilter log data somewhere over the Internet.
Syslog format
You can export NxFilter log data in JSON format or as a pipe separated character string.
If you export it in JSON format,
Dec 6 15:33:11 MYSVR5 {
"Prefix":"NXFILTER",
"Time":"2019-12-06 15:33:11",
"Blocked":"Y",
"Domain":"www.bbc.co.uk",
"User":"johndoe",
"ClientIp":"192.168.0.101",
"Policy":"testpol",
"Category":"News/Magazine",
"Reason":"Blocked by admin",
"Type":28,
"Group":"mygrp"
}
And if you export it as a pipe separated character string,
NXFILTER|2013-01-28 10:53:23|Y|www.bbc.co.uk|john|192.168.0.101|Default|news|Blocked by admin|33|mygrp
It can be parsed into these values,
Prefix : NXFILTER
Time : 2013-01-28 10:53:23
Blocked : Y
Domain : www.bbc.co.uk
User : johndoe
ClientIP : 192.168.0.101
Policy : Default
Category : News/Magazine
Reason : Blocked by admin
Type : 28
Group : mygrp
With NxCloud, you get an operator name instead of 'Group'.
NxCloud sends one more IP that is 'Local IP' from NxRelay at the end of the pipe separated string.