This document demonstrates how to use a timer-interceptor component in Mule to log the execution time of a flow. The timer-interceptor is added with a single line of code <timer-interceptor/> and will log the execution time to the console each time the flow runs. For a sample flow that uses caching, the timer-interceptor shows that the second execution is faster since it retrieves data from the cache rather than hitting the database. In summary, the timer-interceptor provides an easy way to monitor flow performance and execution times in Mule applications.