Zabbix3.4 method to monitor mongodb database status

Zabbix3.4 method to monitor mongodb database status

Mongodb has a db.serverStatus() command, which can be used to view the running status of Mongodb. Then Zabbix can call this command to monitor Mongodb.

1. Use of db.serverStatus() command

Note: Only super administrator accounts have permission to use this command

1. Check the mongodb service status

echo "db.serverStatus()" | mongo --port 37485 -u username -p 'password' --authenticationDatabase 'admin'

2. Check the memory usage of mongodb

echo "db.serverStatus().mem" | mongo --port 37485 -u username -p 'password' --authenticationDatabase 'admin' 


3. Check the number of mongodb connections

echo "db.serverStatus().connections" | mongo --port 37485 -u username -p 'password' --authenticationDatabase 'admin'

2. Create a monitoring profile

1. Write a mongodb monitoring configuration file

vim /etc/zabbix/zabbix_agentd.d/mongodb.conf

UserParameter=MongoDB.status[*],/bin/echo "db.serverStatus().$1" |/data/mongodb/bin/mongo --port 37485 -u username -p 'password' --authenticationDatabase 'admin' | grep "$2" | awk -F ' : ' '{print $$2}' | awk -F ',' '{print $$1}'
UserParameter=MongoDB.ok,/bin/echo "db.serverStatus().ok" | /data/mongodb/bin/mongo --port 37485 -u username -p 'password' --authenticationDatabase 'admin' | sed -n '5p'
UserParameter=MongoDB.connections[*],/bin/echo "db.serverStatus().connections.$1" | /data/mongodb/bin/mongo

Note: Use the super administrator account

2. Restart zabbix-agent

systemctl restart zabbix-agent

3. Test on the zabbix server

/data/zabbix/bin/zabbix_get -s xxx.xxx.xxx.xxx -p 10050 -k "MongoDB.status[mem,virtual]"
/data/zabbix/bin/zabbix_get -s xxx.xxx.xxx.xxx -p 10050 -k "MongoDB.connections[available]"
/data/zabbix/bin/zabbix_get -s xxx.xxx.xxx.xxx -p 10050 -k "MongoDB.ok" 

3. Create a monitoring template

1. Add monitoring template



2. Create an application set

Note: Create an application set based on the items you want to monitor.




3. Create monitoring items

Note: Please create the sub-items you want to monitor one by one according to your own sub-items.




4. Create a trigger



5. Create monitoring graphics




4. Add monitoring template to the host

5. Monitoring effect diagram



Summarize

The above is the method of Zabbix3.4 monitoring the status of mongodb database introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • Detailed usage and command explanation of mongodb monitoring tool mongostat
  • Python monitors Linux memory and writes to MongoDB (recommended)
  • Using the oplog mechanism in MongoDB to implement quasi-real-time data operation monitoring
  • MongoDB performance optimization and monitoring
  • How to use zabbix to monitor mongodb
  • Detailed explanation of MongoDB operation status monitoring and performance analysis tool mongostat
  • Use of MongoDB monitoring tools mongostat and mongotop

<<:  About Vue to eliminate repeated prompts when refreshing the page when the Token expires

>>:  How to handle concurrent updates of MySQL data

Recommend

How to use linux commands to convert and splice audio formats

Install FFmpeg flac eric@ray:~$ sudo apt install ...

Detailed explanation of the usage of scoped slots in Vue.js slots

Table of contents No slots Vue2.x Slots With slot...

CSS3 creates 3D cube loading effects

Brief Description This is a CSS3 cool 3D cube pre...

Detailed explanation of MySql 5.7.17 free installation configuration tutorial

1. Download the mysql-5.7.17-winx64.zip installat...

How to use JS to implement waterfall layout of web pages

Table of contents Preface: What is waterfall layo...

How to use the Linux basename command

01. Command Overview basename - strip directories...

How to configure the same domain name for the front and back ends of nginx

This article mainly introduces the method of conf...

MySQL 8.0.15 installation and configuration tutorial under Win10

What I have been learning recently involves knowl...

Implementation principle and configuration of MySql master-slave replication

Database read-write separation is an essential an...

How to modify the length limit of group_concat in Mysql

In MySQL, there is a function called "group_...

How to modify the contents of an existing Docker container

1. Docker ps lists containers 2. Docker cp copies...

Vue Element UI custom description list component

This article example shares the specific code of ...

Dynamic starry sky background implemented with CSS3

Result:Implementation Code html <link href=...

CSS selects the first child element under the parent element (:first-child)

Preface I recently used :first-child in a project...

How to deploy a simple c/c++ program using docker

1. First, create a hello-world.cpp file The progr...