Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What is the method of zabbix3.4.15 using python to realize the alarm of nailing robot?

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/01 Report--

What is the method of zabbix3.4.15 using python to realize the alarm of nailing robot? in order to solve this problem, this article introduces the corresponding analysis and solution in detail, hoping to help more partners who want to solve this problem to find a more simple and feasible method.

If an exception is detected by the zabbix server, you can notify the alarm through the nailing robot. The specific configuration is as follows:

Nailing robot configuration:

You need to create a new nail group and add a robot to the group.

Python script used for alarm:

# cat dingding.py

#! / usr/bin/env python

# coding:utf-8

# zabbix nail alarm

Import requests,json,sys,os,datetime

Webhook= "https://oapi.dingtalk.com/robot/send?access_token=3dee44ff7fecfxxxxxxxxxxxxxxxxx"-- webhook address of nailing robot

User=sys.argv [1]

Text=sys.argv [3]

Data= {

"msgtype": "text"

"text": {

"content": text

}

"at": {

"atMobiles": [

User

]

"isAtAll": False

}

}

Headers = {'Content-Type':' application/json'}

X=requests.post (url=webhook,data=json.dumps (data), headers=headers)

If os.path.exists ("/ tmp/zabbix_dingding.log"):

F=open ("/ tmp/zabbix_dingding.log", "a +")

Else:

F=open ("/ tmp/zabbix_dingding.log", "w +")

F.write ("\ n" + "- -" * 30)

If x.json () ["errcode"] = = 0:

F.write ("\ n" + str (datetime.datetime.now ()) + "+ str (user) +" + "sent successfully" + "\ n" + str (text))

F.close ()

Else:

F.write ("\ n" + str (datetime.datetime.now ()) + "+ str (user) +" + "send failed" + "\ n" + str (text))

F.close ()

Note: this script needs to be placed in the script execution directory defined by zabbix.

Check the script execution directory method defined in zabbix:

# cat / etc/zabbix/conf/zabbix_server.conf | grep AlertScriptsPath

# Option: AlertScriptsPath

AlertScriptsPath=/usr/local/zabbix/share/zabbix/alertscripts

Webhook address acquisition method of nailing robot:

Group Settings-> Group Robots-> Robots in this group, select the robot you added earlier, and then click on it, as shown below:

Configuration on the WEB interface:

1. Configuration users can use script to alarm

User-> find Admin, click on, find alarm medium

2. Create an alarm medium:

Name dingding

Type script

Name dingding.py

Script parameters:

{ALERT.SENDTO}

{ALERT.SUBJECT}

{ALERT.MESSAGE}

Create a user-specified alarm medium type

Manage-- > alarm media type-- > create media type

Create a trigger to send a warning action

Configure-- > Action-- > create Action

The contents to be filled in for the operation and recovery operation are as follows:

Title: fault message!

Content:

Host name: {HOST.NAME}

Host address: {HOST.IP}

Grouping hosts: {TRIGGER.HOSTGROUP.NAME}

Alarm time: {EVENT.DATE} {EVENT.TIME}

Alarm level: {TRIGGER.SEVERITY}

Alarm item: ({EVENT.ID}) {TRIGGER.KEY1}

Alarm message: {TRIGGER.NAME}

Question details: {ITEM.NAME}: {ITEM.VALUE}

Event status: {TRIGGER.STATUS}

Send time: {TIME}

Default title: restore information!

Message content:

Host name: {HOST.NAME}

Host address: {HOST.IP}

Grouping hosts: {TRIGGER.HOSTGROUP.NAME}

Recovery time: {EVENT.RECOVERY.DATE} {EVENT.RECOVERY.TIME}

Restore project: ({EVENT.RECOVERY.ID}): {TRIGGER.KEY1}

Recovery information: {TRIGGER.NAME}

Recovery details: {ITEM.NAME}: {ITEM.VALUE}: {EVENT.RECOVERY.VALUE}

Current status: {EVENT.RECOVERY.STATUS}

Send time: {TIME}

4. Test and send results

Check the contents of the log sent by the alarm. Status is listed as the sending status, and error is the error message.

[report-> Audit-> Action-> Select time period]

[report-> Audit-> Action Log-> Select time period]

The nail can receive the alarm message, and the configuration is complete.

The alarm message received is similar to the following figure:

This is the answer to the question about how zabbix3.4.15 uses python to realize the nail robot alarm. I hope the above content can be of some help to you. If you still have a lot of doubts to be solved, you can follow the industry information channel for more related knowledge.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report