thousandeyes-sdk-python/thousandeyes-sdk-test-results/docs/DnsTiming.md
Miguel Pragosa 5168916842
Some checks failed
Python CI / build (push) Has been cancelled
[GitHub Bot] Generated python SDK (#163)
Co-authored-by: API Team <api-team@thousandeyes.com>
2026-07-13 10:54:39 +01:00

1.0 KiB

DnsTiming

Timing metrics for a DNS lookup.

Properties

Name Type Description Notes
start_time_us str Unix epoch timestamp in microseconds when the DNS query started. [optional] [readonly]
total_time_us int Total DNS lookup time in microseconds. [optional] [readonly]

Example

from thousandeyes_sdk.test_results.models.dns_timing import DnsTiming

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

# convert the object into a dict
dns_timing_dict = dns_timing_instance.to_dict()
# create an instance of DnsTiming from a dict
dns_timing_from_dict = DnsTiming.from_dict(dns_timing_dict)

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