Execution Timelines
When a request flows through your application, Tensorlake records every function call in an execution timeline. You can see:- Function call sequence — which functions ran and in what order
- Timing — how long each function took, including cold start time
- Dependencies — which function calls ran in parallel vs. sequentially
- Status — success, failure, or retry for each function call
Structured Logging
Use Python’s standardprint() or logging module inside your functions. Logs are captured automatically and associated with the specific function call and request.
Learn More
Logging
Structured logging configuration.