munin-monitoring / contrib

Contributed stuff for munin (plugins, tools, etc...)
http://munin-monitoring.org
1.05k stars 679 forks source link

docker_: 7 lines had errors while 9 lines were correct #1405

Closed daald closed 4 months ago

daald commented 7 months ago

https://github.com/munin-monitoring/contrib/blob/f76cb185bba6001c9bf08b2301a02cbae4837d6c/plugins/docker/docker_#L235

The extinfo lines (all of them) throw an error in munin-update if the text is empty (no containers to be listed)

The error is the following:

2023/12/14 00:25:38 [WARNING] 7 lines had errors while 9 lines were correct (43.75%) in data from 'fetch docker_status' on myhost:4949

Munin version that is triggered: munin-2.0.71-r0 on alpine

rwky commented 5 months ago

Can you confirm what version of docker and the docker python package you have installed? I can't replicate this.

Also what is the output of docker ps -a

daald commented 5 months ago

Sure

The output of (echo fetch docker_status ; echo quit) | ./muninlite &>muninlite.log:

# munin node at mypc
running.value 1
running.extinfo adoring_einstein (firefox:latest, 2024-02-17T23:35:33.797114657Z)
unhealthy.value 0
unhealthy.extinfo 
paused.value 0
paused.extinfo 
created.value 0
created.extinfo 
restarting.value 0
restarting.extinfo 
removing.value 0
removing.extinfo 
exited.value 0
exited.extinfo 
dead.value 0
dead.extinfo 
.

The error, the above output produces is:

2024/02/18 01:20:09 [WARNING] 7 lines had errors while 9 lines were correct (43.75%) in data from 'fetch docker_status' on mypc/192.168.1.31:4949

Notes about above output:

  1. I know from patching: it's really the extinfo line. in the output, the space after the line is still there, it is not removed my muninlite or such, so muninlite is not the cause. the number of empty extinfos is 7.
  2. if I patch the docker munin plugin, this error is gone
  3. the plugin runs through muninlite (https://github.com/munin-monitoring/muninlite), not the standard munin-node implementation. but the result should be the same (except if munin-node silently removes the the trailing space)
$ python --version
Python 3.10.12
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 22.04.4 LTS
Release:    22.04
Codename:   jammy

This patch fixes it for me:

--- ../docker_  2023-12-13 17:54:51.823890754 +0100
+++ /usr/share/munin/plugins/docker_    2024-02-18 00:59:33.366013846 +0100
@@ -200,6 +200,9 @@
     attributes.append(container.attrs['Created'])
     return ', '.join(attributes + list(args))

+def nvl(s):
+    if s == '': return '-'
+    return s

 def print_containers_status(client):
     running = []
@@ -230,21 +233,21 @@
         elif container.status == 'dead':
             dead.append(container)
     print('running.value', len(running))
-    print('running.extinfo', ', '.join(container_summary(c) for c in running))
+    print('running.extinfo', nvl(', '.join(container_summary(c) for c in running)))
     print('unhealthy.value', len(unhealthy))
-    print('unhealthy.extinfo', ', '.join(container_summary(c) for c in unhealthy))
+    print('unhealthy.extinfo', nvl(', '.join(container_summary(c) for c in unhealthy)))
     print('paused.value', len(paused))
-    print('paused.extinfo', ', '.join(container_summary(c) for c in paused))
+    print('paused.extinfo', nvl(', '.join(container_summary(c) for c in paused)))
     print('created.value', len(created))
-    print('created.extinfo', ', '.join(container_summary(c) for c in created))
+    print('created.extinfo', nvl(', '.join(container_summary(c) for c in created)))
     print('restarting.value', len(restarting))
-    print('restarting.extinfo', ', '.join(container_summary(c) for c in restarting))
+    print('restarting.extinfo', nvl(', '.join(container_summary(c) for c in restarting)))
     print('removing.value', len(removing))
-    print('removing.extinfo', ', '.join(container_summary(c) for c in removing))
+    print('removing.extinfo', nvl(', '.join(container_summary(c) for c in removing)))
     print('exited.value', len(exited))
-    print('exited.extinfo', ', '.join(container_summary(c) for c in exited))
+    print('exited.extinfo', nvl(', '.join(container_summary(c) for c in exited)))
     print('dead.value', len(dead))
-    print('dead.extinfo', ', '.join(container_summary(c) for c in dead))
+    print('dead.extinfo', nvl(', '.join(container_summary(c) for c in dead)))

 def image_summary(image):
$ docker ps -a
CONTAINER ID   IMAGE                           COMMAND                    CREATED          STATUS                      PORTS     NAMES
1798b1be103e   firefox                         "/usr/bin/firefox --…"     37 minutes ago   Up 37 minutes                         adoring_einstein
c6b3ee3445b7   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-100
693b30098c37   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-88
d2176bdc813b   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-91
658a73930932   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-98
7cea90e2ed1a   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-79
605a56af4ce0   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-59
7e29be8fc5f8   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-65
d2614074a4b8   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-86
8860f952ba7f   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-75
78b4ea6ae996   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-82
3ef3ffc56ac0   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-68
dd8cad271b11   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-94
f566417f52c3   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-96
25dc67c33ff5   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-99
f6ca96145fdf   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-73
76279f13cca4   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-84
d9d29a5c05f9   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-47
27585f770292   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-95
2b2fc0786d8c   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-70
c6982778500b   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-63
53be5c52bc4a   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-89
7dd6a8b69054   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-80
da88f2d0c2bc   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-53
e0ef625a5c52   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-90
e44ba0f8283a   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-52
0cdcfead68fd   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-92
0a502143206e   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-62
f6d175993aae   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-49
5209f99bbcde   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-81
b1c12207ac39   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-37
aa2aeaf55ba6   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-77
5db09d72688c   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-97
416ff6f474e5   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-69
cc9043fdf8c3   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-54
c2d70fd75fa6   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-58
6a85e441be0d   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-60
e057ddf7db99   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-38
447d22d49e84   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-83
e5d166b4984e   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-48
660e9447f1f7   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-93
5147b4bf7cdd   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-13
5f0cd4c8ba63   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-39
f231620c8def   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-55
16710dad031a   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-78
ee5f5161436d   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-72
c26596db091d   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-87
372a8cd14d41   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-74
1cc8c0e95b28   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-41
245310cbffad   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-85
654a75cb29ca   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-50
c205b9266b9c   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-12
b0b9211753b6   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-28
84f184ee77e5   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-61
11ba0338997e   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-66
295b0f92fe24   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-71
414e71778835   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-51
4c5e8945bd61   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-56
6ffcd752566d   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-67
902a206c0a44   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-15
a8d6cf851987   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-76
2c42eecdd5e0   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-26
00970d678804   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-40
aa6231cb6e95   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-45
3fe9ed56920f   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-57
24478fa82b59   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-16
b78b9dfade86   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-42
a73ede7c1eec   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-14
ab4f5373eb2b   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-29
865ae67b2e65   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-21
a2f69c236901   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-64
9c5c6ce75f03   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-25
144de5f7600e   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-46
07d93052af82   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-19
f7870523ee39   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-43
c6cbebc68df8   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-22
a095e7ac505f   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-34
63068aa8888d   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-35
b70624908a25   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-36
cd1019ac2543   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-30
1d898eae819b   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-44
dab98805488e   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-11
99e9fcceda9b   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-27
e8018cbf660b   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-17
dc6d8d0f2a90   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-33
942943257c69   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-20
78219662b44a   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-18
7ff408d6e34f   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-24
6db451d9a07b   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-31
5a378c62cff2   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 45 minutes ago             munlinlitetest-32
30269e88601e   alpine                          "sleep 5"                  49 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-23
4997aae63aac   alpine                          "sleep 5"                  50 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-10
e2fe3323f24c   alpine                          "sleep 5"                  50 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-9
f2236dc46738   alpine                          "sleep 5"                  50 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-8
faff02e9eac5   alpine                          "sleep 5"                  50 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-7
21b7f4a61b03   alpine                          "sleep 5"                  50 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-6
0e0f8e80b5e7   alpine                          "sleep 5"                  51 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-5
0d0d5071f260   alpine                          "sleep 5"                  51 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-4
393b2a1070db   alpine                          "sleep 5"                  51 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-3
20ec03555a92   alpine                          "sleep 5"                  51 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-2
b3475b49bd91   alpine                          "sleep 5"                  51 minutes ago   Exited (0) 44 minutes ago             munlinlitetest-1
5f80a860d20e   alpine                          "true"                     2 hours ago      Created                               bold_goldberg
777124af9c4d   alpine                          "true"                     2 hours ago      Created                               cranky_driscoll
0fc0ccebf3a4   alpine                          "true"                     2 hours ago      Created                               great_zhukovsky
0f76ce5c7bcd   firefox                         "/usr/bin/firefox --…"     2 hours ago      Up 2 hours                            charming_liskov
4f6cdcfb1c10   c9e72d74da03                    "/bin/sh -c 'apt-get…"     2 weeks ago      Exited (100) 2 weeks ago              laughing_dijkstra
2f1130009e90   c9e72d74da03                    "/bin/sh -c false"         2 weeks ago      Exited (1) 2 weeks ago                jovial_davinci
c157c8dcbb37   5f0abeaf81fb                    "/bin/sh -c false"         2 weeks ago      Exited (1) 2 weeks ago                sharp_lewin
3043e63b6ac0   4101d3a8a2cd                    "/bin/sh -c 'cd /opt…"     2 weeks ago      Exited (127) 2 weeks ago              gifted_banach
fab7417d9ff5   60f79a28813f                    "/bin/sh -c false"         2 weeks ago      Exited (1) 2 weeks ago                competent_perlman
6921e09f6508   852a216f0305                    "/bin/sh -c 'cd /opt…"     2 weeks ago      Exited (2) 2 weeks ago                jolly_montalcini
0783e60e2942   e3dd09babf13                    "/bin/sh -c 'dpkg-bu…"     3 weeks ago      Exited (25) 3 weeks ago               friendly_ardinghelli
117cd143019e   eccfb2ad51d2                    "/bin/sh -c 'apt-get…"     3 weeks ago      Exited (100) 3 weeks ago              relaxed_wright
d8c0769401a4   6615876f9586                    "/bin/sh -c 'dpkg-bu…"     3 weeks ago      Exited (2) 3 weeks ago                competent_heyrovsky
35a128c03c8a   303a0b213baf                    "/bin/sh -c 'dpkg-bu…"     3 weeks ago      Exited (2) 3 weeks ago                dreamy_engelbart
08f0218de2ff   dd9bba255bb3                    "/bin/sh -c 'dpkg-bu…"     3 weeks ago      Exited (2) 3 weeks ago                goofy_euclid
fa5ddb566359   eccfb2ad51d2                    "/bin/sh -c '\" = 0;\"…"   3 weeks ago      Exited (127) 3 weeks ago              funny_herschel
4fae3db6a5e3   202f3e35728a                    "/bin/sh -c 'dpkg-bu…"     3 weeks ago      Exited (2) 3 weeks ago                charming_wilbur
c7390f9f0948   159574216e44                    "/bin/sh -c 'dpkg-bu…"     3 weeks ago      Exited (2) 3 weeks ago                objective_hellman
e18eccd95760   0fd8c347d4ba                    "/bin/sh -c 'apt-get…"     3 weeks ago      Exited (100) 3 weeks ago              interesting_cohen
6e15c8abd37b   0fd8c347d4ba                    "/bin/sh -c 'dpkg-bu…"     3 weeks ago      Exited (2) 3 weeks ago                fervent_carver
7c785fb2708d   90c3b1d8c040                    "/bin/sh -c 'dpkg-bu…"     3 weeks ago      Exited (25) 3 weeks ago               quirky_mccarthy
2346f38d8ade   66db29069e82                    "/bin/sh -c 'dpkg-bu…"     3 weeks ago      Exited (25) 3 weeks ago               beautiful_morse
72ce38f01d1a   0e8a8bec102f                    "/bin/sh -c 'apt-get…"     5 weeks ago      Exited (100) 5 weeks ago              pensive_kepler
931ae08309dc   eb4fad685019                    "/bin/sh -c 'cd /opt…"     8 weeks ago      Exited (8) 8 weeks ago                quizzical_colden
f58070592911   eb4fad685019                    "/bin/sh -c 'cd /opt…"     8 weeks ago      Exited (8) 8 weeks ago                exciting_hamilton
344c50680195   eb4fad685019                    "/bin/sh -c 'cd /opt…"     8 weeks ago      Exited (1) 8 weeks ago                vigorous_mahavira
0aa04c17345c   cd80bb410394                    "/bin/sh -c 'apt-get…"     8 weeks ago      Exited (100) 8 weeks ago              ecstatic_hamilton
31dc0136b515   cd80bb410394                    "/bin/sh -c 'apt-get…"     8 weeks ago      Exited (100) 8 weeks ago              dazzling_pare
c37852c3962b   733464b5b357                    "/bin/sh -c 'exit 1'"      8 weeks ago      Exited (1) 8 weeks ago                focused_pasteur
7741c313f18a   4416768ac8c4                    "/bin/sh -c 'cd /opt…"     8 weeks ago      Exited (2) 8 weeks ago                gifted_ptolemy
905ef1c35ddd   4416768ac8c4                    "/bin/sh -c 'cd /opt…"     8 weeks ago      Exited (2) 8 weeks ago                jolly_wozniak
24fe743aca87   4416768ac8c4                    "/bin/sh -c 'cd /opt…"     8 weeks ago      Exited (2) 8 weeks ago                cranky_swirles
d06aa53f9a84   051291cd3f0a                    "/bin/sh -c 'groupmo…"     2 months ago     Exited (6) 2 months ago               intelligent_sanderson
49a8ddf1360c   testing_munin-server            "/usr/bin/dumb-init …"     2 months ago     Exited (143) 2 months ago             testing_munin-server_1
cb12f2c10b5d   d7e63e899db3                    "/bin/sh -c 'set -x …"     2 months ago     Exited (1) 2 months ago               sweet_hermann
17d3fc6f0e0c   testing-temptool_munin-server   "/usr/bin/dumb-init …"     2 months ago     Exited (143) 2 months ago             testing-temptool_munin-server_1
73fcba3135b3   dennistt/munin-node:latest      "/run.sh"                  2 months ago     Exited (137) 2 months ago             testing-temptool_samplenode_1
d2c89d19f781   dennistt/munin-node:latest      "/run.sh"                  2 months ago     Exited (137) 2 months ago             testing_samplenode_1
d742926cd64a   munin-server4_munin-server      "/usr/bin/dumb-init …"     2 months ago     Exited (143) 2 months ago             munin-server4_munin-server_1
4a8604f6fc06   0d9b0aa7760d                    "/bin/sh -c 'set -x …"     2 months ago     Exited (2) 2 months ago               unruffled_chatelet
d8354f77f9e6   1bc314f6aae1                    "/bin/sh -c 'set -x …"     2 months ago     Exited (2) 2 months ago               nervous_gould
13fa02a0c79b   dd33051b53cc                    "/bin/sh -c 'set -x …"     2 months ago     Exited (2) 2 months ago               youthful_greider
b3ff04e4793f   2bdec46a24a1                    "/bin/sh -c 'set -x …"     2 months ago     Exited (127) 2 months ago             determined_cartwright
174f6f693b00   d5365902df00                    "/bin/sh -c 'set -x …"     2 months ago     Exited (1) 2 months ago               crazy_pike
57b3761673a0   d8a039dd50f6                    "/bin/sh -c 'set -x …"     2 months ago     Exited (1) 2 months ago               nostalgic_hodgkin
18de6f11ca53   dennistt/munin-node:latest      "/run.sh"                  2 months ago     Exited (137) 2 months ago             munin-server4_samplenode_1
8f6651e7a9f1   3ae3db7de167                    "/bin/sh -c 'fc-cach…"     2 months ago     Exited (1) 2 months ago               quizzical_curie
62504227198b   docker-munin_munin-server       "/usr/bin/dumb-init …"     2 months ago     Exited (143) 2 months ago             docker-munin_munin-server_1
75cabcf01e09   15384de374a0                    "/bin/sh -c 'set -x …"     2 months ago     Exited (1) 2 months ago               confident_euclid
e2c507fed0a6   bef464399559                    "/bin/sh -c 'set -x …"     2 months ago     Exited (1) 2 months ago               recursing_cori
477688e9e3a4   1bb433444400                    "/bin/sh -c 'set -x …"     2 months ago     Exited (1) 2 months ago               modest_banzai
c8e4848e59f4   eff0f1454925                    "/bin/sh -c 'set -x …"     2 months ago     Exited (1) 2 months ago               epic_fermat
629dd9268280   76ca4edcb534                    "/bin/sh -c 'set -x …"     2 months ago     Exited (1) 2 months ago               funny_jennings
6b82afc9f52d   c0b85a443a17                    "/bin/sh -c 'set -ex…"     2 months ago     Exited (1) 2 months ago               confident_tesla
66e65b074112   02a08ba5a388                    "/bin/sh -c 'set -ex…"     2 months ago     Exited (1) 2 months ago               pensive_haslett
e8092e74b2f1   1bc5a6721eb3                    "/bin/sh -c 'adduser…"     2 months ago     Exited (1) 2 months ago               optimistic_shirley
57daca64dd41   dennistt/munin-node:latest      "/run.sh"                  2 months ago     Exited (137) 2 months ago             docker-munin_samplenode_1
8fa591dd53ef   668fbaec1ff6                    "/bin/sh -c 'set -x …"     2 months ago     Exited (1) 2 months ago               nervous_ramanujan
1f49129f46ed   14625f7e0614                    "/bin/sh -c 'set -x …"     2 months ago     Exited (1) 2 months ago               festive_archimedes
56e2e55cced5   99d708cff61f                    "/bin/sh -c 'set -x …"     2 months ago     Exited (1) 2 months ago               agitated_haibt
91156997107e   42d05bdea75c                    "/bin/sh -c 'set -x …"     2 months ago     Exited (1) 2 months ago               compassionate_heisenberg
35be6330481d   9d2a3022974b                    "/bin/sh -c 'set -x …"     2 months ago     Exited (1) 2 months ago               nervous_hellman
rwky commented 4 months ago

Got it, PR made https://github.com/munin-monitoring/contrib/pull/1416