34212131 发表于 2017-1-12 09:05:14

zabbix监控php状态(四)

1.nginx配置增加状态

1
2
3
4
5
6
7
8
9
10
11
vim /app/local/nginx/conf/vhosts/php-fpm_status.conf
server {
    listen*:81 default_server;
    server_name _;
    location /php-fpm-status {
    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
    include fastcgi_params;
    fastcgi_pass 127.0.0.1:9000;
    }
}





2.测试访问

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# curl http://localhost:81/php-fpm-status
pool:               www
process manager:      static
start time:         09/Jan/2017:16:09:17 +0800
start since:          176354
accepted conn:      5538266
listen queue:         0
max listen queue:   31
listen queue len:   65535
idle processes:       298
active processes:   2
total processes:      300
max active processes: 300
max children reached: 0
slow requests:      1102




3.增加监控脚本

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
vim php_stat.sh
#!/bin/bash
source /etc/bashrc >/dev/null 2>&1
source /etc/profile >/dev/null 2>&1

LOG=/usr/local/zabbix-agent/logs/phpfpmstatus.log
curl -s http://127.0.0.1:81/php-fpm-status >$LOG

pool(){
      awk '/pool/ {print $NF}' $LOG
}

process_manager(){
      awk '/process manager/ {print $NF}' $LOG
}

start_since(){
      awk '/start since:/ {print $NF}' $LOG
}

accepted_conn(){
      awk '/accepted conn:/ {print $NF}' $LOG
}
listen_queue(){
      awk '/^(listen queue:)/ {print $NF}' $LOG
}

max_listen_queue(){
      awk '/max listen queue:/ {print $NF}' $LOG
}

listen_queue_len(){
      awk '/listen queue len:/ {print $NF}' $LOG
}

idle_processes(){
      awk '/idle processes:/ {print $NF}' $LOG
}

active_processes(){
      awk '/^(active processes:)/ {print $NF}' $LOG
}

total_processes(){
      awk '/total processes:/ {print $NF}' $LOG
}

max_active_processes(){
      awk '/max active processes:/ {print $NF}' $LOG
}

max_children_reached(){
      awk '/max children reached:/ {print $NF}' $LOG
}

case "$1" in
pool)
      pool
      ;;
process_manager)
      process_manager
      ;;
start_since)
      start_since
      ;;
accepted_conn)
      accepted_conn
      ;;
listen_queue)
      listen_queue
      ;;
max_listen_queue)
      max_listen_queue
      ;;
listen_queue_len)
      listen_queue_len
      ;;
idle_processes)
      idle_processes
      ;;
active_processes)
      active_processes
      ;;
total_processes)
      total_processes
      ;;
max_active_processes)
      max_active_processes
      ;;
max_children_reached)
      max_children_reached
      ;;
*)

echo "Usage: $0 {pool|process_manager|start_since|accepted_conn|listen_queue|max_listen_queue|listen_queue_len|idle_processes|active_processes|total_processes|max_active_processes|max_children_reached}"
esac




4.增加配置参数

1
2
3
4
5
6
7
8
9
10
11
12
13
14
vim /app/local/nginx/conf/vhosts/php-fpm_status.conf
#phpstatus
UserParameter=phpfpm.status.pool,/usr/local/zabbix-agent/scripts/php_stat.sh pool
UserParameter=phpfpm.status.process.manager,/usr/local/zabbix-agent/scripts/php_stat.sh process_manager
UserParameter=phpfpm.status.start.since,/usr/local/zabbix-agent/scripts/php_stat.sh start_since
UserParameter=phpfpm.status.accepted.conn,/usr/local/zabbix-agent/scripts/php_stat.sh accepted_conn
UserParameter=phpfpm.status.listen.queue,/usr/local/zabbix-agent/scripts/php_stat.sh listen_queue
UserParameter=phpfpm.status.max.listen.queue,/usr/local/zabbix-agent/scripts/php_stat.sh max_listen_queue
UserParameter=phpfpm.status.listen.queue.len,/usr/local/zabbix-agent/scripts/php_stat.sh listen_queue_len
UserParameter=phpfpm.status.idle.processes,/usr/local/zabbix-agent/scripts/php_stat.sh idle_processes
UserParameter=phpfpm.status.active.processes,/usr/local/zabbix-agent/scripts/php_stat.sh active_processes
UserParameter=phpfpm.status.total.processes,/usr/local/zabbix-agent/scripts/php_stat.sh total_processes
UserParameter=phpfpm.status.max.active.processes,/usr/local/zabbix-agent/scripts/php_stat.sh max_active_processes
UserParameter=phpfpm.status.max.children.reached,/usr/local/zabbix-agent/scripts/php_stat.sh max_children_reached




5.重启进程

1
/etc/init.d/zabbix_agentd restart




6.增加模板

7.增加item

8.增加监控图像
9.查看监控


页: [1]
查看完整版本: zabbix监控php状态(四)