thousandeyes-sdk-python/thousandeyes-sdk-test-results/docs/ConsoleLogs.md
api-team-automation[bot] c6ae90df0d
Some checks failed
Python CI / build (push) Has been cancelled
[GitHub Bot] Generated python SDK (#181)
Co-authored-by: API Team <api-team@thousandeyes.com>
2026-08-06 14:10:18 +01:00

33 lines
1.2 KiB
Markdown

# 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
```python
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]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)