GoodMem
ReferenceClient SDKsPython SDKModels

PingSummary Model

PingSummary Model documentation for Python SDK

Summary emitted at the end of a ping session

Properties

NameTypeDescriptionNotes
endpointPingEndpointInfo
requestsintTotal number of probes scheduled
responsesintNumber of responses received (including timeouts/errors)
okintCount of probes that succeeded
timeoutsintCount of probes that exceeded the timeout
errorsintCount of probes that failed for other reasons
rtt_min_msfloatMinimum observed round-trip latency (ms)
rtt_avg_msfloatAverage observed round-trip latency (ms)
rtt_p50_msfloatMedian (p50) round-trip latency (ms)
rtt_p90_msfloat90th percentile round-trip latency (ms)
rtt_p99_msfloat99th percentile round-trip latency (ms)
rtt_max_msfloatMaximum observed round-trip latency (ms)
requests_per_secondfloatEffective request throughput across the session
bytes_per_secondfloatAggregate bytes per second (send + receive)
applied_limitsDict[str, str]Resource limits applied by the server[optional]

Example

from goodmem_client.models.ping_summary import PingSummary

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

# convert the object into a dict
ping_summary_dict = ping_summary_instance.to_dict()
# create an instance of PingSummary from a dict
ping_summary_from_dict = PingSummary.from_dict(ping_summary_dict)

↑ Back to Python SDK ↑ Back to Python SDK ↑ Back to Python SDK

On this page