mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 14:36:50 +00:00
Some checks failed
Python CI / build (push) Has been cancelled
Co-authored-by: API Team <api-team@thousandeyes.com>
1.5 KiB
1.5 KiB
NetworkPing
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| avg_rtt | int | Ping average response time. | [optional] [readonly] |
| max_rtt | int | Ping maximum response time. | [optional] [readonly] |
| loss | float | Network loss. | [optional] [readonly] |
| mean_dev_rtt | int | Ping mean standard deviation response time. | [optional] [readonly] |
| min_rtt | int | Ping minimum response time. | [optional] [readonly] |
| pkts_received | int | Ping packets received. | [optional] [readonly] |
| pkts_sent | int | Ping packets sent. | [optional] [readonly] |
| error | str | Only present when there is an error. | [optional] [readonly] |
| info_flags | List[str] | [optional] [readonly] |
Example
from thousandeyes_sdk.endpoint_test_results.models.network_ping import NetworkPing
# TODO update the JSON string below
json = "{}"
# create an instance of NetworkPing from a JSON string
network_ping_instance = NetworkPing.from_json(json)
# print the JSON string representation of the object
print(NetworkPing.to_json())
# convert the object into a dict
network_ping_dict = network_ping_instance.to_dict()
# create an instance of NetworkPing from a dict
network_ping_from_dict = NetworkPing.from_dict(network_ping_dict)