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

How does zabbix monitor the status of docker containers

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

Share

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

This article mainly shows you "how zabbix monitors the status of docker containers". The content is simple and clear. I hope it can help you solve your doubts. Let me lead you to study and learn this article "how zabbix monitors the status of docker containers".

Preferred, zabbix_agentd configuration vim / usr/local/zabbix/etc/zabbix_agentd.conf

UserParameter=docker.discovery,/usr/local/zabbix/script/docker.pyUserParameter=docker. [*] / usr/local/zabbix/script/docker.py $1 $2

Here is the docker.py script, which uses the auto-discovery rule to discover the container, and then specifies the container to get status information

#! / usr/bin/pythonimport sysimport osimport jsondef discover (): d = {} d ['data'] = [] with os.popen ("docker ps-a-- format {{.names}") as pipe: for line in pipe: info = {} info [' {# CONTAINERNAME}'] = line.replace ("\ n", ") d ['data'] .append (info) print json.dumps (d) def status (name) Action): if action = "ping": cmd = 'docker inspect-- format= "{{.State.Running}}"% s'% name result = os.popen (cmd). Read (). Replace ("\ n", ") if result = =" true ": print 1 else: print 0 else: cmd = 'docker stats% s-- no-stream-- format" {{.% s} "% (name,action) result = os.popen (cmd). Read (). Replace ("\ n ") "") if "%" in result: print float (result.replace ("%", ")) else: print resultif _ _ name__ = ='_ main__': try: name,action = sys.argv [1], sys.argv [2] status (name,action) except IndexError: discover ()

Here's a little bit about the pit where rules are automatically discovered. It took me a long time to find out. First, the content must be returned in json format, and the other is that the key info ['{# CONTAINERNAME}'] must write {# CONTAINERNAME}.

The returned result is as follows, which must be such a hierarchical relationship.

{"data": [{# CONTAINERNAME} ":" node-3 "}, {" {# CONTAINERNAME} ":" node-2 "}, {" {# CONTAINERNAME} ":" node-1 "}, {" {# CONTAINERNAME} ":" web "}, {" {# CONTAINERNAME} ":" cadvisor "}, {" {# CONTAINERNAME} ":" updatol "}, {" {# CONTAINERNAME} ":" research "}, {" {# CONTAINERNAME} ":" services "}) {"{# CONTAINERNAME}": "data"}, {"{# CONTAINERNAME}": "rabbitmq"}, {"{# CONTAINERNAME}": "redis"}, {"{# CONTAINERNAME}": "mysql"}, {"{# CONTAINERNAME}": "ssdb"}]}

The other function is very simple, which is to call the docker command to get the data.

What about the automatic discovery rule? that's it.

Only these states are monitored, and another trigger is ping to detect whether the current container state is running or not, and alarm if not.

The template is as follows

2018-06-04T04:12:36Z Templates docker-status docker-status Templates docker_test docker.discovery 0 docker.discovery 6000 000 0 0 {# CONTAINERNAME} @ CONTAINERNAME 8 A 30 Container {# CONTAINERNAME} Diskio usage: 0 0 docker. [{# CONTAINERNAME} BlockIO] 60 90 0 0 1 0 0 0 1 0 0 0 docker_test Container {# CONTAINERNAME} CPU usage: 0 0 docker. [{# CONTAINERNAME} CPUPerc] 60 90 365 00% 0 000 0 1 0 0 0 docker_test Container {# CONTAINERNAME} mem usage: 0 0 docker. [{# CONTAINERNAME} MemPerc] 60 90 365 00% 0 000 0 1 0 0 0 docker_test Container {# CONTAINERNAME} NETio usage: 0 0 docker. [{# CONTAINERNAME} NetIO] 60 90 0 0 1 0 0 0 1 0 0 0 docker_test Container {# CONTAINERNAME} is_run: 0 0 docker. [{# CONTAINERNAME} Ping] 30 90 365 0 30 0 0 0 1 0 0 0 docker_test {docker-status:docker. [{# CONTAINERNAME} Ping] .last ()} = 0 0 docker_ {# CONTAINERNAME} _ down 0 0 500 0

Modify the Zabbix_agentd configuration, put the docker.py script under the specified path, don't forget to give the permission, import the template, there is no problem to get the data. If you can't get it, you can zabbix_get to debug it and find out what the problem is.

These are all the contents of the article "how zabbix monitors the status of docker containers". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!

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