Introduction to linux zabbix_agentd command monitoring server parameters

zabbix_agentd command

Function: 
     A daemon process used to monitor various server parameters

Note: 
     1. zabbix_agentd is installed on the monitored server
     2. zabbix_agentd is a cross-platform tool
     3. zabbix_agentd sends monitoring data to zabbix_server
       to achieve the purpose of server monitoring

Syntax format:
          zabbix_agentd [parameter] 
      -----Common parameter description------
       -c: configuration file path
       -p: print out all items
       -t: test the specified item key 

Examples:

----列出所有的items
[root@maomao365 ~]# zabbix_agentd -p

---测试指定的key
[root@maomao365 ~]# zabbix_agentd -t system.uptime -c zabbix_agentd.conf

---启动zabbix_agentd
[root@maomao365 ~]# zabbix_agentd -c zabbix_agentd.conf

 

 

Guess you like

Origin blog.csdn.net/whatday/article/details/114519287