traceroute_tests_network_path
Creates, updates, deletes, gets or lists a traceroute_tests_network_path resource.
Overview
| Name | traceroute_tests_network_path |
| Type | Resource |
| Id | cloudflare.zero_trust.traceroute_tests_network_path |
Fields
The following fields are returned by SELECT queries:
- list
DEX traceroute test network path response
| Name | Datatype | Description |
|---|---|---|
id | string | API Resource UUID tag. (example: f174e90a-fafe-4643-bbbc-4a0ed4fc8415) |
name | string | |
deviceName | string | |
interval | string | The interval at which the Traceroute synthetic application test is set to run. (example: 0h5m0s) |
kind | string | (traceroute) |
networkPath | object | |
url | string | The host of the Traceroute synthetic application test (example: 1.1.1.1) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | account_id, test_id | deviceId, from, to, interval | Get 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.
| Name | Datatype | Description |
|---|---|---|
account_id | string | The Cloudflare account ID. |
test_id | string | unique identifier for a specific test |
deviceId | string | Device to filter tracroute result runs to |
from | string | Start time for aggregate metrics in ISO ms |
interval | string | Time interval for aggregate time slots. |
to | string | End time for aggregate metrics in ISO ms |
SELECT examples
- list
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 }}'
;