network-monitor/README.md

44 lines
3.1 KiB
Markdown
Raw Normal View History

2017-08-02 14:43:16 +00:00
2018-10-01 16:31:07 +00:00
# A Docker Stack which Monitors your home network
Here's a quick start to stand-up a Docker [Prometheus](http://prometheus.io/) stack containing Prometheus, Grafana with [blackbox-exporter](https://github.com/prometheus/blackbox_exporter) and [speedtest-exporter](https://github.com/stefanwalther/speedtest-exporter) to collect and graph home network connections and speed.
2017-02-21 12:37:35 +00:00
2017-05-23 11:56:57 +00:00
## Pre-requisites
2017-02-21 12:37:35 +00:00
Before we get started installing the Prometheus stack. Ensure you install the latest version of docker and [docker-compose](https://docs.docker.com/compose/install/) on your Docker host machine. This has also been tested with Docker for Mac and it works well.
2017-05-23 11:56:57 +00:00
## Installation
2017-02-21 12:37:35 +00:00
Clone the project to your Docker host.
2018-10-01 16:31:07 +00:00
If you would like to change which targets should be monitored or make configuration changes edit the [/prometheus/prometheus.yml](./prometheus/prometheus.yml) file. The targets section is where you define what should be monitored by Prometheus. The names defined in this file are actually sourced from the service name in the docker-compose file. If you wish to change names of the services you can add the "container_name" parameter in the `docker-compose.yml` file.
2017-02-21 12:37:35 +00:00
2017-02-21 14:57:40 +00:00
## Configuration
2018-10-01 16:31:07 +00:00
To change what hosts you ping you change the `targets` section under `blackbox` in [/prometheus/prometheus.yml](./prometheus/prometheus.yml) file.
2017-02-21 15:02:06 +00:00
2018-10-01 16:31:07 +00:00
For speedtest the only relevant configuration is how often you want the check to happen. It is at 5 minutes by default which might be too much if you have limit on downloads. This is changed by editing `scrape_interval` under `speedtest` in [/prometheus/prometheus.yml](./prometheus/prometheus.yml).
2017-02-21 14:57:40 +00:00
2017-02-21 12:37:35 +00:00
Once configurations are done let's start it up. From the /prometheus project directory run the following command:
$ docker-compose up -d
2018-04-30 09:11:51 +00:00
That's it. docker-compose builds the entire Grafana and Prometheus stack automagically.
2017-02-21 12:37:35 +00:00
The Grafana Dashboard is now accessible via: `http://<Host IP Address>:3000` for example http://192.168.10.1:3000
username - admin
password - foobar (Password is stored in the `config.monitoring` env file)
2018-04-17 08:13:30 +00:00
The DataSource and Dashboard for Grafana are automatically provisioned. You can still install the dashboard manually if you choose below.
2017-05-23 11:56:57 +00:00
<center><img src="https://github.com/vegasbrianc/github-monitoring/blob/master/images/Grafana_Add_Data_Source.png" width="400" heighth="400"></center>
2017-02-21 12:37:35 +00:00
## Manual Install Dashboard
2017-02-21 12:37:35 +00:00
I created a Dashboard template which is available on [GitHub Stats Dashboard](https://grafana.net/dashboards/1559). Simply download the dashboard and select from the Grafana menu -> Dashboards -> Import
This dashboard is intended to help you get started with graphing your GitHub Repos. If you have any changes you would like to see in the Dashboard let me know so I can update Grafana site as well.
<center><img src="https://github.com/vegasbrianc/github-monitoring/blob/master/images/dashboard.png" width="4600" heighth="500"></center>
2017-02-21 12:37:35 +00:00
## Troubleshooting
It appears some people have reported no data appearing in Grafana. If this is happening to you be sure to check the time range being queried within Grafana to ensure it is using Today's date with current time.