Christopher
Christopher

Reputation:

Server performance metric tools for LAMP

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

Answers (4)

user11617
user11617

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

Kristian J.
Kristian J.

Reputation: 10432

For profiling your code, there's Xdebug. Doing regression testing with Siege can also be quite useful.

Upvotes: 1

Ryan Doherty
Ryan Doherty

Reputation: 38740

Try Nagios, it's the default tool to monitor servers. You can write plugins to report just about any data.

Upvotes: 1

Yann Ramin
Yann Ramin

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

Related Questions