Browse Source

Updating documentation with Nomadelog help.

Robert Middleswarth 3 years ago
parent
commit
b3e2bdbee3

+ 5 - 0
docs/README.md

@@ -33,6 +33,11 @@ You're done! Now just click App Templates and deploy applications!
 
 [![Pi-Hosted Playlist](https://i.ytimg.com/vi/cO2-gQ09Jj0/hqdefault.jpg?sqp=-oaymwEXCNACELwBSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLAfgdX8HlHas2CddSmgwJzergnTzQ)](https://www.youtube.com/watch?v=cO2-gQ09Jj0&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc)
 
+### Addition Documentation can be found in the Docs Folder
+
+https://github.com/novaspirit/pi-hosted/tree/master/docs
+
+
 ### Contributors
 
 See the list of [contributors](https://github.com/novaspirit/pi-hosted/graphs/contributors) who participated in this project.

BIN
docs/images/rpi_docker_monitor-AppTemplatesList.png


BIN
docs/images/rpi_docker_monitor-Dashboard-Import.png


BIN
docs/images/rpi_docker_monitor-Dashboard-Manage.png


BIN
docs/images/rpi_docker_monitor-Dashboard-Menu-Import.png


BIN
docs/images/rpi_docker_monitor-DataSource.png


BIN
docs/images/rpi_docker_monitor-Menu-Dashboard-Manage.png


BIN
docs/images/rpi_docker_monitor-Menu-User-Preferences.png


BIN
docs/images/rpi_docker_monitor-Preferences-Dashboard.png


BIN
docs/images/rpi_docker_monitor-Raw.png


+ 171 - 0
docs/rpi_docker_monitor.md

@@ -0,0 +1,171 @@
+# Install and setup instructions for the RPI Docker Monitor
+
+## Introduction
+
+A monitoring solution for Docker hosts and containers with [Prometheus](https://prometheus.io/), [Grafana](http://grafana.org/), [cAdvisor](https://github.com/google/cadvisor), [NodeExporter](https://github.com/prometheus/node_exporter).
+
+## Screenshot
+
+![screencapture-192-168-1-100-1013-d-Ss3q6hSZk-docker-and-os-metrics-2021-10-13-21_35_57](https://user-images.githubusercontent.com/18188407/137201307-a47cf9c3-fe8b-4792-8bd1-3fc02f89893b.png)
+
+
+# Installation
+
+## Pre-Installation Steps
+
+First SSH into your Pi and there is one thing we need to do before we get cracking. We need to enable `c-groups` so the stack will work out of the box. To do this you need to modify the configuration file `cmdline.txt`:  This is stored in various locations depending on your OS.  
+
+### Pi OS
+```
+sudo nano /boot/cmdline.txt
+```
+
+### Ubuntu OS
+```
+sudo nano /boot/firmware/cmdline.txt
+```
+
+### All OS's add the following options to the begin of the line:
+
+```
+cgroup_enable=memory cgroup_memory=1
+```
+
+### Now save the file in your editor and reboot:
+
+```
+sudo reboot
+```
+
+### Confirm that c-groups are enabled
+
+```
+cat /proc/cgroups
+```
+
+You should see output something like this.
+
+```
+#subsys_name    hierarchy       num_cgroups     enabled
+cpuset  9       15      1
+cpu     7       69      1
+cpuacct 7       69      1
+blkio   8       69      1
+memory  11      158     1
+devices 3       69      1
+freezer 5       16      1
+net_cls 2       15      1
+perf_event      6       15      1
+net_prio        2       15      1
+pids    4       76      1
+rdma    10      1       1
+```
+
+The numbers aren't really important what is important is that you see memory in the list if you don't confirm you have put it in the correct file.  Don't go on until you get this working.
+
+## Folder Setup Script
+
+First thing we need to do is setup the folder structure and install some files that need to be in place for everything to work correctly.  
+
+Run the following script
+```
+sudo ./rpi_docker_monitor.sh
+```
+
+Your output should look something like this
+
+```
+# sudo ./rpi_docker_monitor.sh
+creating directories
+downloading prometheus config files
+--2021-10-17 00:56:28--  https://raw.githubusercontent.com/oijkn/Docker-Raspberry-PI-Monitoring/main/prometheus/prometheus.yml
+Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.110.133, 185.199.109.133, 185.199.111.133, ...
+Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.110.133|:443... connected.
+HTTP request sent, awaiting response... 200 OK
+Length: 163 [text/plain]
+Saving to: ‘/portainer/Files/AppData/Config/prometheus/config/prometheus.yml’
+
+/portainer/Files/AppData/Config/prometheus/config/promethe 100%[=======================================================================================================================================>]     163  --.-KB/s    in 0s
+
+2021-10-17 00:56:28 (971 KB/s) - ‘/portainer/Files/AppData/Config/prometheus/config/prometheus.yml’ saved [163/163]
+
+setting permissions
+Done You are ready to goto next step in the install document
+```
+
+### This Step is now complete go to the next step.
+<br><br>
+## Install the App Template.<br>
+
+[comment]: # (FixMe)
+![alt text](https://raw.githubusercontent.com/rmiddle/pi-hosted/docker_monitor/docs/images/rpi_docker_monitor-AppTemplatesList.png)
+
+Goto App Templates and install "Raspberry Pi Docker Monitor"
+
+The default settings should all be good so **Deploy the Stack**
+<br><br>
+
+## Setup Grafana
+
+Navigate to Grafana `http://<host-ip>:3000` and login with user ***admin*** password ***admin***. You can change the credentials in the template file or by supplying the `ADMIN_USER` and `ADMIN_PASSWORD` environment variables inside the container monitoring-prometheus. 
+
+```yaml
+GF_SECURITY_ADMIN_USER=admin
+GF_SECURITY_ADMIN_PASSWORD=changeme
+GF_USERS_ALLOW_SIGN_UP=false
+```
+
+### Setup Prometheus as the default data source.
+ 
+```
+Grafana > Configuration > Data Sources > Prometheus
+```
+**It is important that you set the URL to http://monitoring-prometheus:9090/**<br><br>
+
+![image](https://raw.githubusercontent.com/rmiddle/pi-hosted/docker_monitor/docs/images/rpi_docker_monitor-DataSource.png)
+
+### Setup the Dashboard
+Grafana is not preconfigured with dashboard, so you have to import it from the  [json](https://github.com/oijkn/Docker-Raspberry-PI-Monitoring/blob/main/grafana/dashboard_by_oijkn.json) file.
+
+```
+Grafana > + > Import 
+```
+
+![image](https://raw.githubusercontent.com/rmiddle/pi-hosted/docker_monitor/docs/images/rpi_docker_monitor-Dashboard-Menu-Import.png)
+
+Now we open the [json](https://github.com/oijkn/Docker-Raspberry-PI-Monitoring/blob/main/grafana/dashboard_by_oijkn.json) file and Click on the "raw" button to copy the content from the json file.
+
+(!["raw" button](https://raw.githubusercontent.com/rmiddle/pi-hosted/docker_monitor/docs/images/rpi_docker_monitor-Raw.png))
+
+
+ Once copied into the bigger of the 2 boxes Click Load.
+
+![image](https://raw.githubusercontent.com/rmiddle/pi-hosted/docker_monitor/docs/images/rpi_docker_monitor-Dashboard-Import.png)
+
+
+Now we can display the dashboard
+
+```
+Grafana > Dashboard > Manage
+```
+![image](https://raw.githubusercontent.com/rmiddle/pi-hosted/docker_monitor/docs/images/rpi_docker_monitor-Menu-Dashboard-Manage.png)
+
+There should be just the one item list.  Select "Docker and OS Metrics" from the list and you should see the dashboard listed below.
+
+![image](https://raw.githubusercontent.com/rmiddle/pi-hosted/docker_monitor/docs/images/rpi_docker_monitor-Dashboard-Manage.png)
+
+![screencapture-192-168-1-100-1013-d-Ss3q6hSZk-docker-and-os-metrics-2021-10-13-21_35_57](https://user-images.githubusercontent.com/18188407/137201307-a47cf9c3-fe8b-4792-8bd1-3fc02f89893b.png)
+
+
+> Hint: Well the Dashboard is displayed you can select your profile > Preferences and change the default Dashboard to the new Dashboard you just create and it will always display the new Dashboad when you login.
+
+![image](https://raw.githubusercontent.com/rmiddle/pi-hosted/docker_monitor/docs/images/rpi_docker_monitor-Menu-User-Preferences.png)
+
+![image](https://raw.githubusercontent.com/rmiddle/pi-hosted/docker_monitor/docs/images/rpi_docker_monitor-Preferences-Dashboard.png)
+
+
+## Pi Hosted : Raspberry Pi Docker Monitoring Part 7
+[![Pi Hosted : Raspberry Pi Docker Monitoring Part 7](https://i.ytimg.com/vi/IoD3vFuep64/hqdefault.jpg?sqp=-oaymwEXCNACELwBSFryq4qpAwkIARUAAIhCGAE&rs=AOn4CLDBjV3a9aT7NV28n88mqqogOzLUww)](https://www.youtube.com/watch?v=IoD3vFuep64)4
+
+## Acknowledgment
+* based on [Docker-Raspberry-PI-Monitoring](https://github.com/oijkn/Docker-Raspberry-PI-Monitoring) by Oijkn

+ 30 - 11
rpi_docker_monitor.sh

@@ -1,11 +1,30 @@
-#!/bin/sh
-echo "creating directories"
-sudo mkdir -p /portainer/Files/AppData/Config/prometheus/config
-sudo mkdir -p /portainer/Files/AppData/Config/prometheus/data
-sudo mkdir -p /portainer/Files/AppData/Config/grafana/data
-echo "downloading prometheus config files"
-sudo wget -O /portainer/Files/AppData/Config/prometheus/config/prometheus.yml https://raw.githubusercontent.com/oijkn/Docker-Raspberry-PI-Monitoring/main/prometheus/prometheus.yml
-sudo touch /portainer/Files/AppData/Config/grafana/grafana.ini
-echo "setting permissions"
-sudo chown -R 472:472 /portainer/Files/AppData/Config/grafana/data
-echo "done"
+#!/bin/bash
+
+function error {
+  echo -e "\\e[91m$1\\e[39m"
+  exit 1
+}
+
+function check_internet() {
+  printf "Checking if you are online..."
+  wget -q --spider http://github.com
+  if [ $? -eq 0 ]; then
+    echo "Online. Continuing."
+  else
+    error "Offline. Go connect to the internet then run the script again."
+  fi
+}
+
+check_internet
+
+echo "Creating directories..."
+sudo mkdir -p /portainer/Files/AppData/Config/prometheus/config || error "Failed to create config directory!"
+sudo mkdir -p /portainer/Files/AppData/Config/prometheus/data || error "Failed to create data directory for Prometheus!"
+sudo mkdir -p /portainer/Files/AppData/Config/grafana/data || error "Failed to create data directory for Grafana!"
+echo "Downloading Prometheus config files"
+sudo wget -O /portainer/Files/AppData/Config/prometheus/config/prometheus.yml https://raw.githubusercontent.com/oijkn/Docker-Raspberry-PI-Monitoring/main/prometheus/prometheus.yml || error "Failed to download prometheus.yml file!"
+sudo touch /portainer/Files/AppData/Config/grafana/grafana.ini || error "Failed to touch grafana.ini file!"
+echo "Setting permissions..."
+sudo chown -R 472:472 /portainer/Files/AppData/Config/grafana/data || error "Failed to set permissions for Grafana data!"
+echo "Done You are ready to goto next step in the install document"
+