Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down Expand Up @@ -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]`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down Expand Up @@ -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`.
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,12 @@ Type: `string`

Network protocol used for this network session. <br />Possible values are <em>TCP</em> \| <em>UDP</em> \| <em>ICMP</em> \| <em>ICMPV6</em>.

## RegistrationID

Type: `string`

Identifier of the client registration which initiated the network session, if applicable (for example, WARP Registration ID).

## RuleEvaluationDurationMs

Type: `int`
Expand Down