mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 14:36:50 +00:00
2.8 KiB
2.8 KiB
NetworkTestResult
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| var_date | datetime | Data point date in UTC (ISO date-time format). | [optional] [readonly] |
| round_id | int | Epoch time (seconds) indicating the start time of the round | [optional] [readonly] |
| links | TestResultAppLinks | [optional] | |
| start_time | int | Epoch time (seconds) indicating the start time of the round | [optional] [readonly] |
| end_time | int | Epoch time (seconds) indicating the end time of the round | [optional] [readonly] |
| available_bandwidth | float | The bandwidth from the client to the server measured in Mbps. This value is not available if bandwidth testing is disabled, if no value could be calculated, or if the target is a proxy. | [optional] [readonly] |
| avg_latency | float | Average RTT for packets sent to destination | [optional] [readonly] |
| bandwidth | float | [optional] [readonly] | |
| capacity | float | The capacity from the client to the server measured in Mbps. This value is not available if bandwidth testing is disabled, if no value could be calculated, or if the target is a proxy. | [optional] [readonly] |
| jitter | float | Standard deviation of latency | [optional] [readonly] |
| loss | float | Percentage of packets not reaching destination | [optional] [readonly] |
| max_latency | float | Maximum RTT for packets sent to destination | [optional] [readonly] |
| min_latency | float | Minimum RTT for packets sent to destination | [optional] [readonly] |
| packets_by_second | List[List[int]] | Number of packets sent and received in a second. | [optional] [readonly] |
| agent | Agent | [optional] | |
| server_ip | str | IP of target server | [optional] [readonly] |
| server | str | Target server, including port (if method used is TCP) | [optional] [readonly] |
| direction | TestDirection | [optional] |
Example
from thousandeyes_sdk.test_results.models.network_test_result import NetworkTestResult
# TODO update the JSON string below
json = "{}"
# create an instance of NetworkTestResult from a JSON string
network_test_result_instance = NetworkTestResult.from_json(json)
# print the JSON string representation of the object
print(NetworkTestResult.to_json())
# convert the object into a dict
network_test_result_dict = network_test_result_instance.to_dict()
# create an instance of NetworkTestResult from a dict
network_test_result_from_dict = NetworkTestResult.from_dict(network_test_result_dict)