When keeping tabs on your ZF applications, it's often difficult to separate
application errors from general PHP errors, and if you aggregate them in the
same location as your web server errors, this can become more difficult
still.
Additionally, PHP's error reporting doesn't provide a ton of context, even
when reporting uncaught exceptions -- typically you'll only get a cryptic
exception message, and what file and line emitted it.
Zend Server's Monitor extension has some capabilities for...