diff --git a/inspector/README.md b/inspector/README.md
index b3993ba..cc3af9c 100644
--- a/inspector/README.md
+++ b/inspector/README.md
@@ -1,7 +1,7 @@
Inspector
- This will monitor the network and health of a container. If the network drops or health status is anything other than "Healthy", it will reboot the container after a set amount of time. After container has been rebooted, the cool down period will start to give the container time to normalize.
+ This will monitor the health of the qbittorrent container. If the health status is anything other than "Healthy", it will reboot the container after a set amount of time. After the container has been rebooted, the cool down period will start to give the container time to normalize. During the cool down, all actions will be paused for a specified amount of time.
@@ -9,7 +9,7 @@
The following modules are required for the script to function. They will need to be installed first. Python ships with some core modules but others will need to be installed separately.
-#### Standard Python Library Modules:
+### Standard Python Library Modules:
This script uses Python and multiple add on modules.
@@ -23,7 +23,7 @@ This script uses Python and multiple add on modules.
* **logging.handlers:** This is a part of the logging module, offering various handlers for logging.
-#### Modules that Need to be Installed:
+### Modules that Need to be Installed:
* **colorlog:** This is an external library for colored logging output. You need to install it separately using pip.
@@ -53,7 +53,7 @@ To install the external modules you will first need `PIP` installed on your serv
## Folder Structure
-If you have not done so already, create a new folder called `scripts` in your home folder. This is where all your scripts will go.
+If you have not done so already, create a new folder called `scripts` in your **~home** folder. This is where all your scripts will go.
Inside your `scripts` folder create a new folder called `inspector`
@@ -61,17 +61,36 @@ When done your folders structure should look like this: `/home/[username]/script
## Script
-Get the source code from the repo and save it as `inspector.py` in the **inspector** folder created in the previous step.
-
-Make sure to replace /some/folder/to/monitor with the actual path of the folder you want to monitor making sure to leave the quotation marks.
+Get the source code from this repo and save it as `inspector.py` in the **inspector** folder created in the previous step.
Next we need to change the permissions of this file so that the server can read it.
-Right click on podcast_folder_monitor.py then Properties.
-Click on Permissions tab at top.
-Make sure Owner & Group reflect your username with Read and Write access to all.
-Check the Execute box to allow executing the file as a program.
-Close out the window.
+1. Right click on `inspector.py` then Properties.
+
+2. Click on `Permissions` tab at top.
+
+3. Make sure Owner & Group reflect your `username` with `Read and Write` access to all.
+
+4. Check the `Execute` box to allow executing the file as a program.
+
+5. Close out the window.
+
+## Run
+
+Now we need to test and run the script.
+
+Make sure your terminal is open to the location of the `inspector.py` file. Should be `~/scripts/inspector`
+
+Normally to run a Python script will would use `python3 inspector.py`
+
+This will still work but because we have shebang set in the script we can just use
+`./inspector.py`
+
+You should now see `[INFO]` log with the status of the **qbittorrent** container. In the script we set the run time with `interval_seconds = 60` so that the script will check the health of the container every minute.
+
+## Automation
+
+Now the script will need to be automated so that the **qbittorrent docker** will always reboot when needed. See system services to do so.
For install instructions see the wiki.