php
I’ve created the php-fpm status collector for Diamond. It’s available on github under Diamond-PhpCollectors: https://github.com/charlesnagy/Diamond-PhpCollectors Collected metrics
1 2 3 4 5 6 7 8 9 10 11 12 |
$ curl http://localhost/fpm_status [...ignored values] start since: 2926 accepted conn: 113 listen queue: 0 max listen queue: 0 listen queue len: 128 idle processes: 2 active processes: 1 total processes: 3 max active processes: 1 max children reached: 0 |
Configuration First of all you will need to enable...
Initializing Initialize the mysql database from a previous dump as I did earlier.
1 2 3 4 5 6 7 8 9 10 11 |
/etc/init.d/mysql start mysql -e 'show databases' [root@localhost ~]# mysql -e 'show databases' +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | | test | +--------------------+ |
1 2 |
mysql -e 'create database gumibomba_dev' mysql gumibomba_dev < import.sql |
Install PHP and Symfony 1.2 Unlike previous test subjects php doesn’t...
Recent comments