thousandeyes-sdk-python/endpoint_test_results/docs/RealUserTestNetwork.md

2.0 KiB

RealUserTestNetwork

Contains details about network profile and conditions during session.

Properties

Name Type Description Notes
network_profile NetworkProfile [optional]
system_metrics SystemMetrics [optional]
gateway_ping RealUserTestNetworkGatewayPing [optional]
ping RealUserTestNetworkPing [optional]
traceroute RealUserTestNetworkTraceroute [optional]
connect_rtt float Represents the number of milliseconds required to establish TCP connectivity with the target. [optional] [readonly]
is_icmp_blocked bool Set to `true` if network target is blocking ICMP echo (ping) queries. [optional] [readonly]
errors List[str] Array of string representing possible network errors. [optional] [readonly]
vpn_ping RealUserTestNetworkVpnPing [optional]
vpn_traceroute RealUserTestNetworkVpnTraceroute [optional]

Example

from endpoint_test_results.models.real_user_test_network import RealUserTestNetwork

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

# convert the object into a dict
real_user_test_network_dict = real_user_test_network_instance.to_dict()
# create an instance of RealUserTestNetwork from a dict
real_user_test_network_from_dict = RealUserTestNetwork.from_dict(real_user_test_network_dict)

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