thousandeyes-sdk-python/thousandeyes-sdk-endpoint-test-results/docs/HttpEndpointTestResult.md
2025-06-02 16:33:01 +00:00

3.3 KiB

HttpEndpointTestResult

Properties

Name Type Description Notes
aid str A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. [optional]
test_id str Unique ID of endpoint test. [optional] [readonly]
agent_id str Unique ID of endpoint agent, from `/endpoint/agents` endpoint. [optional] [readonly]
round_id int Epoch time (seconds) indicating the start time of the round. [optional] [readonly]
server_ip str IP address of destination server. [optional] [readonly]
network_profile NetworkProfile [optional]
system_metrics SystemMetrics [optional]
original_target_profile TargetProfile [optional]
vpn_profile VpnProfile [optional]
score EndpointHttpDataPointScore [optional]
connect_time int Time required to establish a TCP connection to the server in milliseconds. [optional] [readonly]
dns_time int Time required to resolve DNS in milliseconds. [optional] [readonly]
error_type HttpErrorType [optional]
error_details str Error details, if an error were encountered. [optional] [readonly]
headers HttpEndpointTestResultHeaders [optional]
num_redirects int Number of redirects. [optional] [readonly]
receive_time int Elapsed time between first and last byte of response in milliseconds. [optional] [readonly]
redirect_time int Cumulative redirect timing in milliseconds. [optional] [readonly]
response_code int HTTP response code. [optional] [readonly]
response_time int Time to first byte in milliseconds. [optional] [readonly]
ssl_time int Time to negotiate SSL/TLS in milliseconds. [optional] [readonly]
total_time int Total time is the response time + receive time. [optional] [readonly]
wait_time int Time elapsed between completion of request and first byte of response in milliseconds. [optional] [readonly]
wire_size int Size of content in bytes. [optional] [readonly]

Example

from thousandeyes_sdk.endpoint_test_results.models.http_endpoint_test_result import HttpEndpointTestResult

# TODO update the JSON string below
json = "{}"
# create an instance of HttpEndpointTestResult from a JSON string
http_endpoint_test_result_instance = HttpEndpointTestResult.from_json(json)
# print the JSON string representation of the object
print(HttpEndpointTestResult.to_json())

# convert the object into a dict
http_endpoint_test_result_dict = http_endpoint_test_result_instance.to_dict()
# create an instance of HttpEndpointTestResult from a dict
http_endpoint_test_result_from_dict = HttpEndpointTestResult.from_dict(http_endpoint_test_result_dict)

[Back to Model list] [Back to API list] [Back to README]