Skip to main content

traceroute_tests_network_path

Creates, updates, deletes, gets or lists a traceroute_tests_network_path resource.

Overview

Nametraceroute_tests_network_path
TypeResource
Idcloudflare.zero_trust.traceroute_tests_network_path

Fields

The following fields are returned by SELECT queries:

DEX traceroute test network path response

NameDatatypeDescription
idstringAPI Resource UUID tag. (example: f174e90a-fafe-4643-bbbc-4a0ed4fc8415)
namestring
deviceNamestring
intervalstringThe interval at which the Traceroute synthetic application test is set to run. (example: 0h5m0s)
kindstring (traceroute)
networkPathobject
urlstringThe host of the Traceroute synthetic application test (example: 1.1.1.1)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectaccount_id, test_iddeviceId, from, to, intervalGet a breakdown of metrics by hop for individual traceroute test runs

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
account_idstringThe Cloudflare account ID.
test_idstringunique identifier for a specific test
deviceIdstringDevice to filter tracroute result runs to
fromstringStart time for aggregate metrics in ISO ms
intervalstringTime interval for aggregate time slots.
tostringEnd time for aggregate metrics in ISO ms

SELECT examples

Get a breakdown of metrics by hop for individual traceroute test runs

SELECT
id,
name,
deviceName,
interval,
kind,
networkPath,
url
FROM cloudflare.zero_trust.traceroute_tests_network_path
WHERE account_id = '{{ account_id }}' -- required
AND test_id = '{{ test_id }}' -- required
AND deviceId = '{{ deviceId }}'
AND from = '{{ from }}'
AND to = '{{ to }}'
AND interval = '{{ interval }}'
;