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.
Custom Metrics
Record custom metrics using the request context. Metrics are available in the dashboard for monitoring.| Method | Description |
|---|---|
metrics.timer(name, value) | Record a duration in seconds |
metrics.counter(name, value) | Increment a counter (starts at 0) |