Using zabbix to monitor the ogg process (Linux platform)

Using zabbix to monitor the ogg process (Linux platform)

The ogg process of a database produced some time ago was down for almost half a month before it was discovered. It could no longer be started and had to be reinitialized and synchronized. Therefore, it is necessary to monitor the ogg process. Here we will introduce how to use zabbix to monitor the oracle ogg process. The idea is to use the oracle user to check the relevant status of ogg and write the status to a temporary file for access by the zabbix user. If the ogg status is RUNNING, then the file should be an empty file. If any process is stopped or abended, then the file is not empty. The ogg status can be determined by setting a trigger to determine whether the length of the file content is greater than 0.

To monitor the ogg program under the Windows platform, please see: //www.jb51.net/article/201496.htm

1. First, create a script under the oracle user to periodically write the ogg status to a temporary file

$ su - oracle
$ mkdir scripts
$ cd scripts
$ vi checkogg.sh

#!/bin/bash 
              # author: yangbao 
 source ~/.bash_profile 
      oggdir='/u01/app/OGG_11' # input your ogg home directory
echo "info all" | $oggdir/ggsci | awk '/^MANAGER|^EXTRACT|^REPLICAT/ {print $2}' | grep -v RUNNING | uniq > /tmp/tmpogg.cache
exit 0

$ chmod +x checkogg.sh

$ crontab –l

*/3 * * * * /home/oracle/scripts/checkogg.sh

2. Modify the agent configuration file

$ su - root
$ cd /etc/zabbix/zabbix_agentd.d
$ vi userparameter_ogg.conf

UserParameter=ogg.status,cat /tmp/tmpogg.cache

$ service zabbix-agent restart

3. Add monitoring items to the web page

4. Add a trigger

The above is the details of using zabbix to monitor the ogg process (Linux platform). For more information about zabbix monitoring the ogg process, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Using zabbix to monitor the ogg process (Windows platform)
  • Detailed explanation of monitoring Jenkins process based on zabbix
  • Detailed explanation of the process of Zabbix active, passive and web monitoring in distributed monitoring system
  • Distributed monitoring system Zabbix uses SNMP and JMX channels to collect data
  • Detailed explanation of Zabbix monitoring SQL Server service status
  • How to monitor mysql using zabbix
  • Detailed tutorial for upgrading zabbix monitoring 4.4 to 5.0
  • Detailed steps for adding hosts you need to monitor in zabbix
  • Example code for configuring monitoring items and aggregated graphics in Zabbix

<<:  Why MySQL does not recommend deleting data

>>:  HTML table tag tutorial (31): cell width and height attributes WIDTH, HEIGHT

Recommend

How to view the IP address of Linux in VMware virtual machine

1. First, double-click the vmware icon on the com...

Ansible automated operation and maintenance deployment method for Linux system

Ansible is a new automated operation and maintena...

Node.js sends emails based on STMP protocol and EWS protocol

Table of contents 1 Node.js method of sending ema...

Solution to Linux not supporting all commands

What should I do if Linux does not support all co...

Detailed explanation of Docker basic network configuration

External Access Randomly map ports Using the -P f...

Detailed explanation of mysql filtering replication ideas

Table of contents mysql filtered replication Impl...

Detailed steps to install MySQL 5.7 via YUM on CentOS7

1. Go to the location where you want to store the...

Implement group by based on MySQL to get the latest data of each group

Preface: The group by function retrieves the firs...

What are the usages of limit in MySQL (recommended)

SELECT * FROM table name limit m,n; SELECT * FROM...

VMware virtual machine installation Apple Mac OS super detailed tutorial

Table of contents Summarize Sometimes we need to ...

Floating menu, can achieve up and down scrolling effect

The code can be further streamlined, but due to t...

Basic statements of MySQL data definition language DDL

MySQL DDL statements What is DDL, DML. DDL is dat...