Skip to content
Start here

Speed

SpeedSchedule

resource cloudflare_observatory_scheduled_test

required Expand Collapse
url: String

A URL.

zone_id: String

Identifier.

computed Expand Collapse
id: String

A URL.

frequency: String

The frequency of the test.

region: String

A test region.

schedule: Attributes

The test schedule.

frequency: String

The frequency of the test.

region: String

A test region.

url: String

A URL.

test: Attributes
id: String

UUID.

date: Time
desktop_report: Attributes

The Lighthouse report.

cls: Float64

Cumulative Layout Shift.

device_type: String

The type of device.

error: Attributes
code: String

The error code of the Lighthouse result.

detail: String

Detailed error message.

final_displayed_url: String

The final URL displayed to the user.

fcp: Float64

First Contentful Paint.

json_report_url: String

The URL to the full Lighthouse JSON report.

lcp: Float64

Largest Contentful Paint.

performance_score: Float64

The Lighthouse performance score.

si: Float64

Speed Index.

state: String

The state of the Lighthouse report.

tbt: Float64

Total Blocking Time.

ttfb: Float64

Time To First Byte.

tti: Float64

Time To Interactive.

mobile_report: Attributes

The Lighthouse report.

cls: Float64

Cumulative Layout Shift.

device_type: String

The type of device.

error: Attributes
code: String

The error code of the Lighthouse result.

detail: String

Detailed error message.

final_displayed_url: String

The final URL displayed to the user.

fcp: Float64

First Contentful Paint.

json_report_url: String

The URL to the full Lighthouse JSON report.

lcp: Float64

Largest Contentful Paint.

performance_score: Float64

The Lighthouse performance score.

si: Float64

Speed Index.

state: String

The state of the Lighthouse report.

tbt: Float64

Total Blocking Time.

ttfb: Float64

Time To First Byte.

tti: Float64

Time To Interactive.

region: Attributes

A test region with a label.

label: String
value: String

A test region.

schedule_frequency: String

The frequency of the test.

url: String

A URL.

cloudflare_observatory_scheduled_test

resource "cloudflare_observatory_scheduled_test" "example_observatory_scheduled_test" {
  zone_id = "023e105f4ecef8ad9ca31a8372d0c353"
  url = "example.com"
}

data cloudflare_observatory_scheduled_test

required Expand Collapse
url: String

A URL.

zone_id: String

Identifier.

optional Expand Collapse
region?: String

A test region.

computed Expand Collapse
frequency: String

The frequency of the test.

cloudflare_observatory_scheduled_test

data "cloudflare_observatory_scheduled_test" "example_observatory_scheduled_test" {
  zone_id = "023e105f4ecef8ad9ca31a8372d0c353"
  url = "example.com"
  region = "us-central1"
}