在前面的博客中介绍了如何部署企业级监控,以及监控主机时的几种发现方式,以及对于API接口的管理做了简单的介绍和操作演示;接下来就要做应用层面的监控。 链接: link .
1. Apache监控
在前面的基础上,server1位server端;server2和server3为agent端。
在server2上安装apache ,然后让其被监控。
- 安装apache
[root@server2 ~]
[root@server2 ~]
[root@server2 ~]
[root@server2 ~]
www.westos.org
- 在监控页面直接用模板来添加监控:
添加后可以在监控项中看到相关信息,只有一条监控项, 是关于HTTP运行情况的。
可以看出它只是一般检查,过于简单,相对来说并不可考。
而且在实际业务中使用的监控并不一定有现成模板,很大概率需要自行编写监控规则,下面用NGINX来进行举例.
2. Nginx 监控
在server3上源码编译安装nginx服务并安装监控模块;
- 编译nginx
[root@server3 ~]
[root@server3 ~]
nginx-1.18.0 nginx-1.18.0.tar.gz
[root@server3 ~]
[root@server3 nginx-1.18.0]
auto CHANGES CHANGES.ru conf configure contrib html LICENSE man README src
[root@server3 nginx-1.18.0]
172
[root@server3 nginx-1.18.0]
[root@server3 nginx-1.18.0]
[root@server3 ~]
PATH=$PATH:$HOME/bin:/usr/local/nginx/sbin
[root@server3 ~]
[root@server3 ~]
[root@server3 ~]
<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
body {
width: 35em;
margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif;
}
</style>
</head>
<body>
<h1>Welcome to nginx!</h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p>
<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.com</a>.</p>
<p><em>Thank you for using nginx.</em></p>
</body>
</html>
编辑配置文件,让其怎么对外开放;
[root@server3 conf]
48 location /status {
49 stub_status on;
50 access_log off;
51 allow 127.0.0.1;
52 deny all;
53 }
[root@server3 conf]
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[root@server3 conf]
[root@server3 conf]
[root@server3 ~]
Active connections: 1
server accepts handled requests
4 4 7
Reading: 0 Writing: 1 Waiting: 0
那么主要问题就是Server端如何拿到这串信息中有用的部分了。
[root@server3 ~]
Active connections: 1
[root@server3 ~]
1
[root@server3 ~]
[root@server3 zabbix_agentd.d]
userparameter_mysql.conf
[root@server3 zabbix_agentd.d]
[root@server3 zabbix_agentd.d]
[root@server3 zabbix_agentd.d]
UserParameter=nginx_active,curl -s http:
[root@server3 zabbix_agentd.d]
- 在server端
需要安装软件包,然后来获取;
[root@server1 ~]
[root@server1 ~]
1
以上的过程是手动的取,前端监控页面完成规则的添加,让其自动获取;
创建监控项:
新增监控项,注意键值与之前所写的一定要相同, 名称则没有要求。
创建图形详细操作:
同理可以监控其他信息:
[root@server3 zabbix_agentd.d]
33
[root@server3 zabbix_agentd.d]
34
[root@server3 zabbix_agentd.d]
38
[root@server3 zabbix_agentd.d]
[root@server3 zabbix_agentd.d]
UserParameter=nginx_active,curl -s http:
UserParameter=nginx_accpet,curl -s http:
UserParameter=nginx_handle,curl -s http:
UserParameter=nginx_request,curl -s http:
[root@server3 zabbix_agentd.d]
[root@server1 ~]
46
[root@server1 ~]
47
[root@server1 ~]
51
然后再依次来创建监控项,然后再图形中让其加入:
3. Mysql 监控
- 手动结合mysql与zabbix
zabbix添加服务会读取/etc/zabbix/zabbix_agentd.d/的.conf文件,手动监控添加mysql即编写musql相关.conf文件。由于server1主机已存在mysql,所以server1既可以当主机,又可以当agent机。
由于此时mysql并不像nginx可以直接返回值,需要做进一步的设定;
[root@server1 ~]
[root@server1 zabbix_agentd.d]
userparameter_mysql.conf
[root@server1 zabbix_agentd.d]
UserParameter=mysql.status[*],echo "show global status where Variable_name='$1';" | HOME=/var/lib/zabbix mysql -N | awk '{print $$2}'
UserParameter=mysql.size[*],bash -c 'echo "select sum($(case "$3" in both|"") echo "data_length+index_length";; data|index) echo "$3_length";; free) echo "data_free";; esac)) from information_schema.tables$([[ "$1" = "all" || ! "$1" ]] || echo " where table_schema=\"$1\"")$([[ "$2" = "all" || ! "$2" ]] || echo "and table_name=\"$2\"");" | HOME=/var/lib/zabbix mysql -N'
UserParameter=mysql.ping,HOME=/var/lib/zabbix mysqladmin ping | grep -c alive
UserParameter=mysql.version,mysql -V
[root@server1 zabbix_agentd.d]
zabbix_get [1541]: Check access restrictions in Zabbix agent configuration
[root@server1 zabbix_agentd.d]
[root@server1 zabbix_agentd.d]
[root@server1 zabbix]
[root@server1 zabbix]
[root@server1 zabbix]
[mysql]
host = localhost
user = root
password = westos
socket = /var/lib/mysql/mysql.sock
[mysqladmin]
host = localhost
user = root
password = westos
socket = /var/lib/mysql/mysql.sock
[root@server1 zabbix]
[root@server1 zabbix]
mysql Ver 15.1 Distrib 5.5.60-MariaDB, for Linux (x86_64) using readline 5.1
在前端界面进行监控项的设置
此模板所用的监控项太少,换成下面的方式。
- percona-mysql 模板结合 mysql 与 zabbix
与前面的相比 Percona Monitoring Plugins 带有190多个监控项。
首先删掉之前手动添加的mysql数据库模块,在监控页面 主机 -> 模板 -> 取消链接并清理 。
这么多监控项全部手动添加显然是不现实的, 需要使用模板倒入;
下载软件包并配置信息:
[root@server1 ~]
percona-zabbix-templates-1.1.8-1.noarch.rpm zabbix_api.sh
[root@server1 ~]
warning: percona-zabbix-templates-1.1.8-1.noarch.rpm: Header V4 DSA/SHA1 Signature, key ID cd2efd2a: NOKEY
Preparing...
Updating / installing...
1:percona-zabbix-templates-1.1.8-1
Scripts are installed to /var/lib/zabbix/percona/scripts
Templates are installed to /var/lib/zabbix/percona/templates
[root@server1 ~]
[root@server1 scripts]
get_mysql_stats_wrapper.sh ss_get_mysql_stats.php
[root@server1 scripts]
[root@server1 templates]
userparameter_percona_mysql.conf zabbix_agent_template_percona_mysql_server_ht_2.0.9-sver1.1.8.xml
[root@server1 templates]
[root@server1 templates]
[root@server1 zabbix_agentd.d]
userparameter_mysql.conf userparameter_percona_mysql.conf
[root@server1 ~]
190 /etc/zabbix/zabbix_agentd.d/userparameter_percona_mysql.conf
为了能够正确链接数据库获取信息,需要修改ss_get_mysql_stats.php php脚本中数据库登陆相关内容:
[root@server1 ~]
[root@server1 scripts]
get_mysql_stats_wrapper.sh ss_get_mysql_stats.php
[root@server1 scripts]
30 $mysql_user = 'root';
31 $mysql_pass = 'westos';
通过调用脚本来确定功能呢个是否能够实现:
[root@server1 scripts]
22
[root@server1 scripts]
[root@server1 tmp]
localhost-mysql_cacti_stats.txt
systemd-private-9e47cdd214544d9fb1164b22866a01c7-httpd.service-wzimn9
systemd-private-9e47cdd214544d9fb1164b22866a01c7-mariadb.service-V3KBwx
[root@server1 tmp]
8191
测试结束删除/tmp/ 下生成的文本文件,用为root用户下测试的文件器与用户无法写入;
[root@server1 tmp]
localhost-mysql_cacti_stats.txt
systemd-private-9e47cdd214544d9fb1164b22866a01c7-httpd.service-wzimn9
systemd-private-9e47cdd214544d9fb1164b22866a01c7-mariadb.service-V3KBwx
[root@server1 tmp]
为监控页面导入模板,方便进行自动化扫描:
添加新的模板:
此时再次查看时会发现多了一百多个监控项;图形处也变了很多。
4. zabbix 监控Tomcat
Tomcat 在java虚拟机中默认操作无法实现对其监控;不过 zabbix也提供了组件zabbix-java-geteway .
先在server2上部署java环境,然后下载Tomcat的包;
[root@server2 tomcat]
[root@server2 ~]
[root@server2 ~]
[root@server2 local]
apache-tomcat-7.0.37 bin etc games include lib lib64 libexec sbin share src
[root@server2 local]
[root@server2 local]
[root@server2 tomcat]
bin conf lib LICENSE logs NOTICE RELEASE-NOTES RUNNING.txt temp webapps work
[root@server2 tomcat]
Using CATALINA_BASE: /usr/local/tomcat
Using CATALINA_HOME: /usr/local/tomcat
Using CATALINA_TMPDIR: /usr/local/tomcat/temp
Using JRE_HOME: /usr
Using CLASSPATH: /usr/local/tomcat/bin/bootstrap.jar:/usr/local/tomcat/bin/tomcat-juli.jar
此时便开启8080端口。
修改配置文件,增加额外监听端口:
[root@server2 tomcat]
Using CATALINA_BASE: /usr/local/tomcat
Using CATALINA_HOME: /usr/local/tomcat
Using CATALINA_TMPDIR: /usr/local/tomcat/temp
Using JRE_HOME: /usr
Using CLASSPATH: /usr/local/tomcat/bin/bootstrap.jar:/usr/local/tomcat/bin/tomcat-juli.jar
[root@server2 bin]
/usr/local/tomcat/bin
[root@server2 bin]
99 CATALINA_OPTS='
100 -Dcom.sun.management.jmxremote.port=8888
101 -Dcom.sun.management.jmxremote.ssl=false
102 -Dcom.sun.management.jmxremote.authenticate=false
103 '
[root@server2 bin]
Using CATALINA_BASE: /usr/local/tomcat
Using CATALINA_HOME: /usr/local/tomcat
Using CATALINA_TMPDIR: /usr/local/tomcat/temp
Using JRE_HOME: /usr
Using CLASSPATH: /usr/local/tomcat/bin/bootstrap.jar:/usr/local/tomcat/bin/tomcat-juli.jar
[root@server2 bin]
tcp6 0 0 :::8888 :::* LISTEN 18758/java
此时网页中访问:http://172.25.25.2:8080/ 时可以看到tomcat已经到位;
在server1上安装监控java的组件并完成配置:
[root@server1 ~]
[root@server1 ~]
[root@server1 zabbix]
web zabbix_agentd.d zabbix_java_gateway_logback.xml
zabbix_agentd.conf zabbix_java_gateway.conf zabbix_server.conf
[root@server1 zabbix]
[root@server1 zabbix]
tcp6 0 0 :::10052 :::* LISTEN 21847/java
设置网关位置,并设定默认开启进程数:
[root@server1 zabbix]
289 JavaGateway=172.25.25.1
305 StartJavaPollers=5
[root@server1 zabbix]
在网页信息中添加对JMX接口的支持:
添加完成之后会多很多JVM的包;
|