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
@@ -1,7 +1,7 @@
---
# Code generator. DO NOT EDIT.

title: Audit logs
title: Audit Logs
pcx_content_type: configuration
sidebar:
order: 21
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,148 @@
---
# Code generator. DO NOT EDIT.

title: Audit Logs V2
pcx_content_type: configuration
sidebar:
order: 21
---

The descriptions below detail the fields available for `audit_logs_v2`.

## AccountID

Type: `string`

The Cloudflare account ID.

## AccountName

Type: `string`

The Cloudflare account name.

## ActionDescription

Type: `string`

Description of action taken.

## ActionResult

Type: `string`

Whether the action was successful.

## ActionTimestamp

Type: `int or string`

When the change happened.

## ActionType

Type: `string`

Type of action taken.

## ActorContext

Type: `string`

Context of the actor.

## ActorEmail

Type: `string`

Email of the actor.

## ActorID

Type: `string`

Unique identifier of the actor in Cloudflare's system.

## ActorIPAddress

Type: `string`

Physical network address of the actor.

## ActorTokenDetails

Type: `object`

Details of how the actor is authenticated.

## ActorType

Type: `string`

Type of user that started the audit trail.

## AuditLogID

Type: `string`

Unique identifier of an audit log.

## Raw

Type: `object`

Raw data.

## ResourceID

Type: `string`

Unique identifier of the resource within Cloudflare's system.

## ResourceProduct

Type: `string`

Resource product.

## ResourceRequest

Type: `object`

Resource request.

## ResourceResponse

Type: `object`

Resource response.

## ResourceScope

Type: `string`

Resource scope.

## ResourceType

Type: `string`

The type of resource that was changed.

## ResourceValue

Type: `object`

Resource value.

## ZoneID

Type: `string`

The Cloudflare zone ID.

## ZoneName

Type: `string`

The Cloudflare zone name.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ Type: `string`

The domain name in the URL.

## Metadata

Type: `string`

Additional information specific to a user action (JSON string).

## Timestamp

Type: `int or string`
Expand All @@ -45,6 +51,12 @@ Type: `string`

The URL of the webpage where a user action was performed.

## UserEmail

Type: `string`

The user email.

## UserID

Type: `string`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,18 @@ Type: `string`

The protocol used for the DNS query by the client (for example, 'udp').

## QueryApplicationIDs

Type: `array[int]`

ID or IDs of applications the queried domain belongs to (for example, [1, 51])

## QueryApplicationNames

Type: `array[string]`

Name or names of applications the queried domain belongs to (for example, ['Cloudflare Dashboard'])

## QueryCategoryIDs

Type: `array[int]`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,12 @@ Type: `string`

The name of the Cloudflare data center to which traffic ingressed.

## InitialOriginIP

Type: `string`

The IP used to correlate existing FQDN matching policy between Gateway DNS and Gateway proxy.

## Offramp

Type: `string`
Expand Down Expand Up @@ -189,6 +195,12 @@ Type: `string`

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

## ResolvedFQDN

Type: `string`

The fully qualified domain name of the destination.

## RuleEvaluationDurationMs

Type: `int`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ HTTP method of client request.

Type: `string`

URI path requested by the client.
URI path requested by the client, which includes only the path portion of the requested URL, without the query string.

## ClientRequestProtocol

Expand Down Expand Up @@ -187,7 +187,7 @@ Identifies requests as coming from an external source or another service within

Type: `string`

URI requested by the client.
URI requested by the client, which includes the full path and query string of the requested URL.

## ClientRequestUserAgent

Expand Down Expand Up @@ -345,6 +345,24 @@ Type: `int`

Total view of Time To First Byte as measured at Cloudflare's edge. Starts after a TCP connection is established and ends when Cloudflare begins returning the first byte of a response to eyeballs. Includes TLS handshake time (for new connections) and origin response time.

## FraudAttack

Type: `string`

The primary attack or use case detected in the request by Fraud detections.

## FraudDetectionIDs

Type: `array[int]`

List of IDs that correlate to the Fraud detections made on a request.

## FraudDetectionTags

Type: `array[string]`

List of tags that correlate to the Fraud detections made on a request.

## JA3Hash

Type: `string`
Expand All @@ -363,6 +381,12 @@ Type: `object`

Inter-request statistics computed for this JA4 fingerprint. JA4Signals field is organized in key:value pairs, where values are numbers. Available only for Bot Management customers. To enable this feature, contact your account team.

## JSDetectionPassed

Type: `string`

Whether the request passed background JavaScript Detection. <br />Possible values are <em>passed</em> \| <em>failed</em> \| <em>missing</em>. Available only for Bot Management customers. To enable this feature, contact your account team.

## LeakedCredentialCheckResult

Type: `string`
Expand Down Expand Up @@ -519,6 +543,12 @@ Type: `int`

The "upper tier" data center that was checked for a cached copy if Tiered Cache is used.

## VerifiedBotCategory

Type: `string`

The category of verified bot.

## WAFAttackScore

Type: `int`
Expand Down
Loading