Fabien Potencier
Contributed by Fabien Potencier in #5952

Symfony 2.2 gave birth to two new components: PropertyAccess and Stopwatch. Like PropertyAccess, the Stopwatch component was not written from scratch, but it was extracted from code that was previously hosted in the HttpKernel component. But as the code can be useful by itself, we decided to extract it and make it standalone.

So, what is it about? As you might have guessed now, the Stopwatch component provides a way to measure the execution time of specific parts of your code. In Symfony, it is heavily used by the profiler to gather information about what happens during the handling of request and how much time is spent in each layer.

The Stopwatch component in action in the Symfony Profiler

I won't explain how it works here as the documentation has been already written for it in the official documentation.

But let me give you one useful tip: if you want to include your timing information directly into the Symfony profiler timeline panel, just use the Stopwatch instance that is available via the service container:

1
2
3
if ($this->has('debug.stopwatch')) {
    $stopwatch = $this->get('debug.stopwatch');
}

The check for existence is required as this service is only available in the debug environment.

Happy debugging!

Published in #Living on the edge