Reputation:
Any suggestions for tools to monitor page load times/errors and other performance metrics for a PHP application?
I am aware of the FireBug and YSlow tools, but this is for more server monitoring.
Upvotes: 3
Views: 2049
Reputation:
You can also try httperf. It's a very flexible tool and if you want to test how your application and webserver can deal with various traffic loads you should definitely give it a go.
Upvotes: 1
Reputation: 10432
For profiling your code, there's Xdebug. Doing regression testing with Siege can also be quite useful.
Upvotes: 1
Reputation: 38740
Try Nagios, it's the default tool to monitor servers. You can write plugins to report just about any data.
Upvotes: 1
Reputation: 33187
There is the classic 'ab' (apachebench) program. More power comes from JMmeter. For server health, I recommend Munin, which can painlessly capture data from several systems and aggregate it on one page.
Upvotes: 4