thousandeyes-sdk-python/thousandeyes-sdk-test-results/docs/ConsoleLogs.md
2026-08-04 13:13:20 +00:00

1.2 KiB

ConsoleLogs

Console logs captured during script execution to help troubleshoot transaction issues.

Properties

Name Type Description Notes
level str Severity level of the log, or UNKNOWN if the log is system-generated. [optional]
timestamp str Unix epoch time, in milliseconds, when the log entry was captured. [optional]
value str Log message. [optional]

Example

from thousandeyes_sdk.test_results.models.console_logs import ConsoleLogs

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

# convert the object into a dict
console_logs_dict = console_logs_instance.to_dict()
# create an instance of ConsoleLogs from a dict
console_logs_from_dict = ConsoleLogs.from_dict(console_logs_dict)

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