VisiCore AI — Extending X10
X10 DividendLog Samples

Zscaler ZIA

Zscaler NSS web log format tokens and vendor example values.

Source: NSS Feed Output Format: Web Logs. The web NSS feed carries no fixed line. An administrator composes the output from format tokens, so the field dictionary — not a captured line — is the contract. The reduction depends on which fields the template selects.

Format tokens

Each field is a token such as %s{login} or %d{respcode}. Representative fields, with the vendor's own example values:

TokenFieldExample
%s{time}Transaction timeMon Oct 16 22:55:48 2023
%d{epochtime}Epoch time1578128400
%s{login}User loginjdoe@safemarch.com
%s{host}Destination hostmail.google.com
%s{url}Destination URLwww.trythisencodeurl.com/index
%s{reqmethod}Request methodget
%s{respcode}Response code200
%d{reqsize}Request bytes1300
%d{respsize}Response bytes10500
%s{action}Policy actionBlocked
%s{reason}Policy reasonNot allowed to browse this category
%s{urlcat}URL categoryAdult Themes
%s{threatname}Threat nameEICAR Test File

The feed exposes %s{time} (a full date string) and %d{epochtime} (the same moment as an integer) as separate tokens. Selecting the epoch token drops a timestamp from about 24 characters to 10.

Zscaler also documents Base64 fields for URL, referrer, and hostname, and notes that turning on Base64 for all supported fields costs about a 20% throughput drop — a reason to encode only the fields that need it.

On this page