golang obtains zabbix graph monitoring chart through itemid

Brief introduction This article will use golang and the third-party http client library gorequest To write. If you need to use only the golang standard library, please refer to another article of mine golang obtains zabbix graph monitoring chart through itemid #F&Q Why golang? It's easy to find the script to download the zabbix graph moni ...

Posted by ejaboneta on Wed, 25 Dec 2019 13:48:00 -0800

Zabbix4.0 Pins, Mail, WeChat Alarm

1. zabbix Mail Alarm SettingsPrinciple: After breaking the alarm, you can configure corresponding actions, in which you can send mail, WeChat, pins, text messages, etc.Place the alert script in Configuration/usr/local/zabbix/etc/zabbix_server.conf LogFile=/usr/local/zabbix/zabbix_server.log DBHost=127.0.0.1 DBName=zabbix DBUser=zabbix DBPassw ...

Posted by newbiez on Mon, 23 Dec 2019 13:09:36 -0800

Detailed steps for Zabbix3.4 installation

zabbix is an enterprise open source solution based on the WEB interface that provides distributed system monitoring and network monitoring capabilities. The zabbix consists of two parts, the zabbix server and the optional component zabbix agent. zabbix server can provide remote server/network status monitoring, data collection and other func ...

Posted by diagnostix on Sun, 22 Dec 2019 10:23:38 -0800

Deployment of zabbix monitoring service

zabbix monitoring service zabbix: it is an enterprise level open source solution based on WEB interface that provides distributed system monitoring and network monitoring functions. It can monitor various network parameters to ensure the safe operation of the server system, and provide flexible notification mechanism to enabl ...

Posted by loveitandhateit on Tue, 17 Dec 2019 10:19:56 -0800

zabbix Chinese character scrambling problem, three solutions summary. There's always a way for you

Method 1: replace font Modify web front end VIM of zabbix / www / HTML / zabbix / include / definitions.inc.phpReplace DejaVuSans with simkai in two places define('ZBX_FONT_NAME', 'DejaVuSans'); define('ZBX_GRAPH_FONT_NAME', 'DejaVuSans'); Replace DejaVuSans with simkai define('ZBX_FONT_NAME', 'simkai'); define('ZBX_GRAPH_FONT_NAME', 'simkai ...

Posted by freshclearh2o on Wed, 04 Dec 2019 02:54:11 -0800

zabbix4.2 server installation

As for the installation of zabbix server 4.2, in fact, the official website has written a lot of details. I'll take notes here and make some additions by the way. zabbix official website address: https://www.zabbix.com/download The system environment I use here is CentOS 6.9. mysql, php and nginx are pre installed 1. Install ZAB ...

Posted by lizard on Fri, 29 Nov 2019 08:31:39 -0800

Script automation shut Down the Down host in Zabbix

Next, I use Python to shut Down the Down hosts in Zabbix through py Zabbix API. The basic idea is 1. Obtain the IP of the previous group 2. Verify whether the host is Down through telnet 3. Shut down the host Warning: the python script relies heavily on telnet connectivity results. If the network is unstable, the results will be directly affe ...

Posted by Ozzapoo on Fri, 22 Nov 2019 06:07:57 -0800

zabbix Sends WeChat Alerts with Pictures

zabbix Sends WeChat Alerts with Pictures 2.1 Realization Ideas 2.2 Preparing the environment The script uses python scripts, running in python 2.7.5 Dependent libraries are installed in advance: requests 2.3 ×××tid,secret This section allows you to see a detailed description of the previous article without a diagram 2.4 Script Implementati ...

Posted by Toby on Thu, 07 Nov 2019 13:51:47 -0800

Detailed Explanation of Building zabbix Monitoring System

In order to understand the running status of the server in real time and solve the problems in time, it is a good choice to use monitoring software, while zabbix monitoring system stands out among many monitoring software. Zabbix is an enterprise-level open source monitoring software based on web interface. The Zabbix server needs LAMP or LNMP ...

Posted by serenade2 on Sat, 12 Oct 2019 13:48:35 -0700

Python automation: export zabbix data concurrent mail scripts

Zabbix has no report export function, so it exports ZABBIX data and sends mail concurrently by writing scripts. The results are as follows: [External Chain Picture Transfer.. (img-YujWHCbu-1565876650802)] Following is the script, which can be modified according to its own specific circumstances: `#!/usr ...

Posted by malbera on Thu, 03 Oct 2019 04:30:26 -0700