diff options
author | Soulou <leo.unbek@gmail.com> | 2015-12-14 10:03:50 +0100 |
---|---|---|
committer | Soulou <leo.unbek@gmail.com> | 2015-12-14 10:03:50 +0100 |
commit | 43b9a53a91f48ebb68c98b9f0c372681462a0ffa (patch) | |
tree | 0f67a3118ae07d2f06edcaa0183df4fdb3c5f48d | |
parent | ca0a7c54f2e90e600edd02c85c1560afd291e506 (diff) | |
download | munin-43b9a53a91f48ebb68c98b9f0c372681462a0ffa.tar.gz munin-43b9a53a91f48ebb68c98b9f0c372681462a0ffa.tar.bz2 munin-43b9a53a91f48ebb68c98b9f0c372681462a0ffa.tar.xz munin-43b9a53a91f48ebb68c98b9f0c372681462a0ffa.zip |
Update README.md
-rw-r--r-- | README.md | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -50,6 +50,7 @@ For a bit of persistency ## How to use the image ``` +docker build -t munin-server . docker run -d \ -p 8080:8080 \ -v /var/log/munin:/var/log/munin \ @@ -65,8 +66,15 @@ docker run -d \ -e ALERT_RECIPIENT=monitoring@example.com \ -e ALERT_SENDER=alerts@example.com \ -e NODES="server1:10.0.0.1 server2:10.0.0.2" \ - -e SNMP_NODES="router1:10.0.0.254:9999" + -e SNMP_NODES="router1:10.0.0.254:9999" \ munin-server ``` -You can now reach your munin-server on port 8080 of your host. +You can now reach your munin-server on port 8080 of your host. It will display at the first run: + +``` +Munin has not run yet. Please try again in a few moments. +``` + +Every 5 minutes munin-server will interrogate its nodes and build the graphs and store the data. +That's only after the first data fetching operation that the first graphs will appear. |