diff --git a/src/content/docs/logs/reference/log-fields/account/biso_user_actions.md b/src/content/docs/logs/reference/log-fields/account/biso_user_actions.md index 7823baa873b8c5a..a6bb4340084498b 100644 --- a/src/content/docs/logs/reference/log-fields/account/biso_user_actions.md +++ b/src/content/docs/logs/reference/log-fields/account/biso_user_actions.md @@ -39,6 +39,12 @@ Type: `string` The user action type ('copy', 'paste', 'download', etc.). +## URL + +Type: `string` + +The URL of the webpage where a user action was performed. + ## UserID Type: `string` diff --git a/src/content/docs/logs/reference/log-fields/account/device_posture_results.md b/src/content/docs/logs/reference/log-fields/account/device_posture_results.md index f1139413cc450b5..50c3f898b6fb28b 100644 --- a/src/content/docs/logs/reference/log-fields/account/device_posture_results.md +++ b/src/content/docs/logs/reference/log-fields/account/device_posture_results.md @@ -99,6 +99,12 @@ Type: `object` JSON object of what the Zero Trust client actually uploads. +## RegistrationID + +Type: `string` + +The UUID of the device registration associated with this posture result. + ## Timestamp Type: `int or string` diff --git a/src/content/docs/logs/reference/log-fields/account/gateway_dns.md b/src/content/docs/logs/reference/log-fields/account/gateway_dns.md index 3af520136935098..7f18596e780a46c 100644 --- a/src/content/docs/logs/reference/log-fields/account/gateway_dns.md +++ b/src/content/docs/logs/reference/log-fields/account/gateway_dns.md @@ -165,6 +165,12 @@ Type: `array[string]` Name or names of category that the queried domains belongs to (for example, ['Photography', 'Weather']). +## InitialResolvedIPs + +Type: `array[string]` + +The IPs used to correlate existing FQDN matching policy between Gateway DNS and Gateway proxy. + ## InternalDNSFallbackStrategy Type: `string` @@ -327,6 +333,30 @@ Type: `array[object]` The rdata objects (for example, [{"type":"5","data":"dns-packet-placeholder..."}]). +## RedirectTargetURI + +Type: `string` + +Custom URI to which the user was redirected, if any. + +## RegistrationID + +Type: `string` + +The UUID of the device registration from which the HTTP request originated (for example, 'dad71818-0429-11ec-a0dc-000000000000'). + +## RequestContextCategoryIDs + +Type: `array[int]` + +ID or IDs of the category that was sent to gateway in the EDNS request for filtering (for example, [7,12,28,122,129,163]). + +## RequestContextCategoryNames + +Type: `array[string]` + +Name or names of the category that was sent to gateway in the EDNS request for filtering (for example, ['Photography', 'Weather']). + ## ResolvedIPCategoryIDs Type: `array[int]` diff --git a/src/content/docs/logs/reference/log-fields/account/gateway_http.md b/src/content/docs/logs/reference/log-fields/account/gateway_http.md index 150bbed2e5bd1fd..d4d990354fa3c31 100644 --- a/src/content/docs/logs/reference/log-fields/account/gateway_http.md +++ b/src/content/docs/logs/reference/log-fields/account/gateway_http.md @@ -213,12 +213,24 @@ Type: `bool` If the request content was quarantined. +## RedirectTargetURI + +Type: `string` + +Custom URI to which the user was redirected, if any. + ## Referer Type: `string` Contents of the referer header in the HTTP request. +## RegistrationID + +Type: `string` + +The UUID of the device registration from which the HTTP request originated. + ## RequestID Type: `string` diff --git a/src/content/docs/logs/reference/log-fields/account/gateway_network.md b/src/content/docs/logs/reference/log-fields/account/gateway_network.md index 6a65be237229ffb..0e13d22446eb320 100644 --- a/src/content/docs/logs/reference/log-fields/account/gateway_network.md +++ b/src/content/docs/logs/reference/log-fields/account/gateway_network.md @@ -129,6 +129,12 @@ Type: `string` The proxy endpoint used on this network session, if any. +## RegistrationID + +Type: `string` + +The UUID of the device registration from which the network session originated. + ## SNI Type: `string` diff --git a/src/content/docs/logs/reference/log-fields/account/workers_trace_events.md b/src/content/docs/logs/reference/log-fields/account/workers_trace_events.md index 347c53e522ff317..0fb7bca1376d0cd 100644 --- a/src/content/docs/logs/reference/log-fields/account/workers_trace_events.md +++ b/src/content/docs/logs/reference/log-fields/account/workers_trace_events.md @@ -9,6 +9,12 @@ sidebar: The descriptions below detail the fields available for `workers_trace_events`. +## CPUTimeMs + +Type: `int` + +The amount of CPU time used by the Worker script, in milliseconds. + ## DispatchNamespace Type: `string` @@ -74,3 +80,9 @@ A list of user-defined tags used to categorize the Worker. Type: `object` The version of the script that was invoked. + +## WallTimeMs + +Type: `int` + +The elapsed time in milliseconds between the start of a Worker invocation, and when the Workers Runtime determines that no more JavaScript needs to run. Specifically, this measures the wall-clock time that the JavaScript context remained open. For example, when returning a response with a large body, the Workers runtime can, in some cases, determine that no more JavaScript needs to run, and closes the JS context before all the bytes have passed through and been sent. Alternatively, if you use the `waitUntil()` API to perform work without blocking the return of a response, this work may continue executing after the response has been returned, and will be included in `WallTimeMs`. diff --git a/src/content/docs/logs/reference/log-fields/account/zero_trust_network_sessions.md b/src/content/docs/logs/reference/log-fields/account/zero_trust_network_sessions.md index 47f6aa4dda395aa..0cdb49ea52067ba 100644 --- a/src/content/docs/logs/reference/log-fields/account/zero_trust_network_sessions.md +++ b/src/content/docs/logs/reference/log-fields/account/zero_trust_network_sessions.md @@ -183,6 +183,12 @@ Type: `string` Network protocol used for this network session.
Possible values are TCP \| UDP \| ICMP \| ICMPV6. +## RegistrationID + +Type: `string` + +Identifier of the client registration which initiated the network session, if applicable (for example, WARP Registration ID). + ## RuleEvaluationDurationMs Type: `int`