Tilebox stores logs and spans for each workflow job. Use the jobs client to query that telemetry from notebooks, scripts, or automated diagnostics.Documentation Index
Fetch the complete documentation index at: https://docs.tilebox.com/llms.txt
Use this file to discover all available pages before exploring further.
Query job logs
query_logs() returns a LogRecords list. Pagination is handled automatically.
Python
timeseverity_numberandseverity_textbodytrace_idandspan_idattributesrunner_attributes
As pandas DataFrame
Useto_pandas() to convert log records to a pandas DataFrame.
Python

Query job spans
query_spans() returns a Spans list. Pagination is handled automatically.
Python
start_timeandend_timedurationtrace_id,span_id, andparent_span_idnamestatus_codeandstatus_messageattributesrunner_attributesevents
As pandas DataFrame
Useto_pandas() to convert spans to a pandas DataFrame.
Python

attributes, runner_attributes, and events stay as Python objects in DataFrame columns. Span DataFrames include a computed duration column.
