一佳互联

展开菜单

zabbix3.2添加日志文件监控

zabbix3.2添加日志文件监控
之前安装好 zabbix3.2与oracle,具体详见:http://www.micoder.cc/blog/1953.html需要添加服务器的应用服务的日志监控与系统登陆信息监控,这里就作一个简单的例子。在zabbix上配置监控主机后,添加监控项目:监控日志key首先要了解key,log[ file  ,<regexp>,<encoding>,<maxlines>,<mode>,<output>]file...

Zabbix 日志文件监控(官网原文)

Zabbix 日志文件监控(官网原文)
Log file monitoringOverviewZabbix can be used for centralized monitoring and analysis of log files with/without log rotation support. Notifications can be used to warn users when a log file contains certain strings or string patterns.To mon...

zabbix 配置Nginx和php-fpm监控(附监控脚本)

zabbix 配置Nginx和php-fpm监控(附监控脚本)
配置Nginx和php-fpm监控(io的监控也在压缩包里面,可以参考一下)1,准备几个文件:http://pan.baidu.com/s/1DzJeI2,将fpm.sh,nginx-check.sh放到客户端服务器上,这里放在 /home/sh/ 目录下     chmod +x fpm.sh nginx-check.sh     添加缓存目录:  mkdir -p /usr/local/zabbix/var...

互联网企业级监控系统 OpenFalcon

互联网企业级监控系统 OpenFalcon
Open-Falcon 是小米运维部开源的一款互联网企业级监控系统解决方案.Githubhttps://github.com/open-falcon/of-releaseHighlights and features数据采集免配置:agent自发现、支持Plugin、主动推送模式容量水平扩展:生产环境每秒50万次数据收集、告警、存储、绘图,可持续水平扩展。告警策略自发现:Web界面、支持策略模板、模板继承和覆盖、多种告警方式、支持回调动作。告警设置人性化:支持最大告警次数、告...

How To Install Zabbix3 on CentOS 7

How To Install Zabbix3 on CentOS 7
How To Install Zabbix on CentOS 7In this tutorial we will show you how to install and configuration of Zabbix on your CentOS 7 server. For those of you who didn’t know, Zabbix is an open source monitoring tool that is ideal for monitoring y...

CentOS 7 yum install Zabbix 2.4.7

CentOS 7 yum install Zabbix 2.4.7
1.RHEL/CentOS 7# yum install gcc gcc-c++ make openssl-devel curl wget net-snmp net-snmp-utils net-snmp-libs net-snmp-devel gnutls gnutls-devel libxml2 libxml2-develStep 2: Install MariaDB Database and Library# yum install mariadb-server mar...

CentOS7上安装Zabbix3.0

CentOS7上安装Zabbix3.0
#!/bin/bash##    0、配置无人值守的安装,定义安装过程中需要用到的一些信息#mysql_root_pw=root_pwmysql_zabbix_pw=zabbix_pwDBPassword=$mysql_zabbix_pwCacheSize=256MZBX_SERVER_NAME=My-Zabbix-Server##    1、配置yum源#cat /etc/redhat-release |grep...