实验环境:

zabbix server 172.16.1.121

访问端 172.16.1.122

55.1 说明

zabbix_manager是zabbix终端管理工具,可以在linux终端实现管理zabbix,同时

可以通过zabbix_manager实现对zabbix的一键初始化,一键导出报表(报表为excel)

等功能。

参考文档:

https://www.w3cschool.cn/zabbix_manager/zabbix_manager-z45f1zie.html

55.2 安装

在172.16.1.122节点上操作

# git clone https://github.com/BillWang139967/zabbix_manager.git

# cd zabbix_manager

# sh start.sh

55.3 配置连接zabbix server

# cat /etc/zabbix_tool/zabbix_config.ini

# 默认连接(可通过--profile选择连接的zabbix)

[zabbixserver]

# zabbix server IP

server = 172.16.1.121

# zabbix web 端口

port = 80

# zabbix web 管理员账号

user = Admin

# zabbix web 管理员密码

password = zabbix

#[bendi]

#server = 192.168.199.128

#port = 80

#user = admin

#password = zabbix

55.4 额外配置

搭建zabbix server时使用的lnmp,前端使用的apache时需要进行操作,即前端使用

nginx时则不需要进行以下操作。

将配置文件/etc/zabbix_tool/zabbix_setting.ini中的apache = False

改为apache=True

# cat /etc/zabbix_tool/zabbix_setting.ini

[web]

# lnmp(False),lamp(True)

apache = True

[report]

logo_show = True

55.5 测试

# zabbix_api hostgroup_get --table

zabbix_manager:[1.4.04]

+-------------+-----------------------------+

| hostgroupID | hostgroupName |

+-------------+-----------------------------+

| 5 | Discovered hosts |

| 7 | Hypervisors |

| 2 | Linux servers |

| 1 | Templates |

| 12 | Templates/Applications |

| 13 | Templates/Databases |

| 8 | Templates/Modules |

| 9 | Templates/Network devices |

| 10 | Templates/Operating systems |

| 16 | Templates/SAN |

| 11 | Templates/Server hardware |

| 15 | Templates/Telephony |

| 14 | Templates/Virtualization |

| 6 | Virtual machines |

| 4 | Zabbix servers |

+-------------+-----------------------------+

sum: 15

55.6 以主机群组的方式导出数据表

--hostgroupid # 选择特定主机组

--hostid # 选择特定主机

item支持模糊搜索

(1) 对监控名称进行分隔符分割后,进行完全匹配,如某个监控项名称为“CPU idle time” 则搜索CPU即可匹配,搜索CP,则不匹配

(2) --sign 设置分割符,默认以“ ”(空格)分割,如某个监控项名称为“CPU_idle_time” 则搜索CPU相关的监控项,同时加“--sign _”参数

1 在zabbix中查看主机组id号

2 创建导出excel报表的目录

# mkdir -p /test/

3 生成报表

# zabbix_api --report "ICMP loss" "2021-01-01 00:00:00" "2021-01-31 00:00:00" --table --hostgroupid 4 --table --xls /test/ICMP_LOSS.xls

zabbix_manager:[1.4.04]

主机:无

主机组:Zabbix servers

+ICMP loss-----------+-----------+-------+---------+--------+

| hostid | name | itemName | min | max | avg |

+--------+-----------+-----------+-------+---------+--------+

| 10354 | baidu.com | ICMP loss | 0.0 % | 100.0 % | 14.0 % |

+--------+-----------+-----------+-------+---------+--------+

# zabbix_api --report "ICMP ping" "2021-01-01 00:00:00" "2021-01-31 00:00:00" --table --hostgroupid 4 --table --xls /test/ICMP_PING.xls

zabbix_manager:[1.4.04]

主机:无

主机组:Zabbix servers

+ICMP ping-----------+-----------+-----+-----+-----+

| hostid | name | itemName | min | max | avg |

+--------+-----------+-----------+-----+-----+-----+

| 10354 | baidu.com | ICMP ping | 0 | 1 | 0 |

+--------+-----------+-----------+-----+-----+-----+

# zabbix_api --report "ICMP response time" "2021-01-01 00:00:00" "2021-01-31 00:00:00" --table --hostgroupid 4 --table --xls /test/ICMP_REPONSE_TIME.xls

zabbix_manager:[1.4.04]

主机:无

主机组:Zabbix servers

+ICMP response time--+--------------------+-------+------------------+----------+

| hostid | name | itemName | min | max | avg |

+--------+-----------+--------------------+-------+------------------+----------+

| 10354 | baidu.com | ICMP response time | 0.0 s | 0.258016666667 s | 0.0525 s |

+--------+-----------+--------------------+-------+------------------+----------+

# zabbix_api --report "ICMP" "2021-01-01 00:00:00" "2021-01-31 00:00:00" --table --hostgroupid 4 --table --xls /test/ICMP_RESULT.xls

zabbix_manager:[1.4.04]

主机:无

主机组:Zabbix servers

+ICMP----+-----------+--------------------+-------+------------------+----------+

| hostid | name | itemName | min | max | avg |

+--------+-----------+--------------------+-------+------------------+----------+

| 10354 | baidu.com | ICMP ping | 0 | 1 | 0 |

| 10354 | baidu.com | ICMP loss | 0.0 % | 100.0 % | 14.0 % |

| 10354 | baidu.com | ICMP response time | 0.0 s | 0.258016666667 s | 0.0525 s |

+--------+-----------+--------------------+-------+------------------+----------+

4 查看Excel报表

# sz -y /test/ICMP_RESULT.xls

5 补充

(1) 更改表头

# vim /usr/bin/zabbix_api

2558 export_xls = {"xls":"OFF",

2559 "xls_name":"ceshi.xls",

2560 "title":"OFF",

2561 "title_name":u"测试"

2562 }

(2) 给报表增加IP地址字段

# vim /usr/bin/zabbix_api

1) 如下图添加 host_info[3] 字段

2) 如下图添加相应的输出字段

2) 测试

# zabbix_api --report "ICMP" "2021-01-01 00:00:00" "2021-01-31 00:00:00" --table --hostgroupid 4 --table --xls /test/ICMP_RESULT.xls

zabbix_manager:[1.4.04]

主机:无

主机组:Zabbix servers

(u'10354', u'baidu.com', u'baidu.com', u'112.80.248.76', u'0')

(u'10084', u'Zabbix server', u'Zabbix server', u'127.0.0.1', u'1')

+ICMP----+-----------+---------------+--------------------+-------------------+-------------------+----------+

| hostid | name | hostip | itemName | min | max | avg |

+--------+-----------+---------------+--------------------+-------------------+-------------------+----------+

| 10354 | baidu.com | 112.80.248.76 | ICMP ping | 1 | 1 | 1 |

| 10354 | baidu.com | 112.80.248.76 | ICMP loss | 0.0 % | 0.0 % | 0.0 % |

| 10354 | baidu.com | 112.80.248.76 | ICMP response time | 0.0218666666667 s | 0.0446533333333 s | 0.0351 s |

+--------+-----------+---------------+--------------------+-------------------+-------------------+----------+

zabbix_manage的使用的更多相关文章

随机推荐

  1. XSF /如何使用xrandr

    XSF /如何使用xrandr 西里尔·布鲁莱布瓦<kibi@debian.org> 目录 入门 什么是xrandr? xrandr是与XRandR 扩展名交互的命令行工具[请参阅x.or ...

  2. localectl set-locale LANG=en_US.UTF-8

    localectl set-locale LANG=en_US.UTF-8    

  3. 二进制部署K8S-2集群部署

    二进制部署K8S-2集群部署 感谢老男孩教育王导的公开视频,文档整理自https://www.yuque.com/duduniao/k8s. 因为在后期运行容器需要有大量的物理硬件资源使用的环境是用的 ...

  4. S7 Linux用户管理及用户信息查询命令

    7.1 useradd:创建用户 7.2-5 usermod 7.6 passwd:修改用户密码 7.7-9 chage.chpasswd.su 7.10-11 visudo.sudo 7.12-7. ...

  5. Jlink固件更新

    故障:JLINK上的指示灯也不亮,无驱动等 文中所提工具和固件链接: 工具:http://pan.baidu.com/s/1c2z8nao 固件:http://pan.baidu.com/s/1jIB ...

  6. 10.15 wget:命令行下载工具

    wget命令   用于从网络上下载某些资料,该命令对于能够连接到互联网的Linux系统的作用非常大,可以直接从网络上下载自己所需要的文件. wget的特点如下: 支持断点下载功能. 支持FTP和HTT ...

  7. unity inputfield 过滤emoji输入

    unity版本:unity2017.1.5f1 复现步骤:InputField在安卓手机InputField连续输入两个emoji会报错 报错内容: 2020-01-08 19:56:38.366 2 ...

  8. Python+Selenium自动化 模拟鼠标操作

    Python+Selenium自动化 模拟鼠标操作   在webdriver中,鼠标的一些操作如:双击.右击.悬停.拖动等都被封装在ActionChains类中,我们只用在需要使用的时候,导入这个类就 ...

  9. Spring的controller接受Date类型数据,接受枚举类型数据

    1. Controller接收Date类型的数据 核心使用@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") 来将传递过来的时间字符串 ...

  10. 人脸照片自动生成游戏角色_ICCV2019论文解析

    人脸照片自动生成游戏角色_ICCV2019论文解析 Face-to-Parameter Translation for Game Character Auto-Creation 论文链接: http: ...