1. Monitoring portRelationship DescriptionTrigger: Get the value according to the client's script. When a certain value of the client reaches the requirement, an alarm will be issued. Monitoring items: Get values according to the client script, set the interval for collecting values, keep and record the values, and form a curve chart Application set: used to classify and store monitoring items. For example, monitoring items for web services such as 80 and 8080 are placed in the WEB application set, and monitoring items for small services such as 22 and 21 are placed in the SMALL application set. Template: A template is a set of defined monitoring items. When any host is connected to a template, the monitoring items in the template will be applied to the host. However, to modify these monitoring items, you can only modify them in the template, and after the modification, other connected hosts will also change accordingly. operate1. Create a template. The template name is used to indicate the monitoring port. Here, it is named Port. The template must be added to a group. You can create a separate group to distinguish it. 2. Create an application set. You only need to name the application set. 3. Create monitoring items. The name is used to distinguish the values to be monitored. It may be the number of visits to nginx or the number of reads to mysql. There are two types of key values, one is to click and select to use the system's built-in value, and the other is to customize the script key. Select net.tcp.listen[port] here, use telnet to find out whether a host is listening to a port, and fill in the port number to be monitored in [port]. 4. Create a trigger, {HOST.NAME} will obtain the host name for alarm display. Click Add Expression, or copy the value of other built-in triggers to modify it. 5. Select the corresponding group and find the newly created monitoring item from the group. 6. Port is the template name. If you choose to write the host name or host IP here, it will become a monitoring item for a single host instead of a template. 2. Monitoring ServiceRelationship Description Script: Execute the script to obtain the value. Configuration file: Allows custom keys and associates the key value with the script to obtain the value. operate 1. Create a script to get the value #!/bin/bash case $1 in Lian) netstat -anptu | grep 172.26.98.247:80 | wc -l ;; Ping netstat -unltp | grep -w 80 &>/dev/null && echo 1 || echo 0 ;; *) echo "Lian | Ping" ;; esac Test script 2. Modify the client configuration file to allow custom keys Include=/etc/zabbix/zabbix_agentd.conf.d/*.conf #Load other configuration files UnsafeUserParameters=1 #Enable custom Key
3. Modify the configuration file, set the key value name and script location, so that the configuration file can know which script needs to be executed to obtain this key value web.ping is a custom key value name, followed by the script path UserParameter=web.ping,/etc/zabbix/script/web_status.sh Ping UserParameter=web.lian,/etc/zabbix/script/web_status.sh Lian If you want to use an absolute path for a command, you can also get the value as follows, without having to use a script. UserParameter=web.shu,/bin/netstat -anptu | wc -l 4. Detection, client testing Server-side testing: 5. Appear (Not all processes could be identified, non-owned process info This is because the netstat command is used in the script, but the client uses the zabbix user to start the script and does not have permission to use this command. The client executes Web page operation: 3. Import and export of templatesImport: Export: This is the end of this article about zabbix custom monitoring items and triggers. For more relevant zabbix custom monitoring items, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: MySQL database operations and data types
>>: Example of JSON output in HTML format (test interface)
1. Enter the directory where your project war is ...
CSS background image flickering bug in IE6 (backg...
remember: IDE disk: the first disk is hda, the se...
This article example shares the specific code of ...
Table of contents 01 Container consistency 02 Con...
People who often use MySQL may encounter the foll...
Nginx's shared memory is one of the main reas...
Vue $set array collection object assignment In th...
1. Install mysql: udo apt-get install mysql-serve...
Tutorial Series MySQL series: Basic concepts of M...
The question arises This question arose when I wa...
The MySQL development team officially released th...
Let our users choose whether to move forward or ba...
Server: Ubuntu Server 16.04 LSS Client: Ubuntu 16...
Using the <img> element with the default sr...