I am using XDebug to profile a large MVC application and it would be much easier to profile individual requests by their URI rather than filename (.php) as several requests are made via internal functions, resulting in multiple grind files for a single page refresh.
I have seen %p = process ID, %t = Timestamp and %s = Script name ( var_path_to_example.php )
It would be much easier if the file could be named more like grind.{domain}{path}.%p
Is this possible? I havent been able to find any other string formatting replacers that may do what im after.
Single page refresh currently creates four grind files ( three for index, one is main request, other two are media compressors ) and one for img.php which is a media path rewriter and resizer.
All of this combined into a single www.example.com/path/to/controller.grind would be preferable for this situation.