Skip to content

Commit

Permalink
Merge pull request #5 from MiguelNdeCarvalho/docs
Browse files Browse the repository at this point in the history
Update Docs
  • Loading branch information
MiguelNdeCarvalho authored Oct 2, 2020
2 parents 3ab4f0e + 3ae6c7d commit 9d5e2c4
Showing 1 changed file with 37 additions and 1 deletion.
38 changes: 37 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,37 @@
# speedtest-exporter
# Speedtest Exporter

## Description

This is a simple **speedtest exporter** for **Prometheus** written in **Python**

## Running the Container

To run the container via **CLI**:

```bash
docker run -d \
--name=speedtest-exporter \
-p 9112:9112 \
--restart unless-stopped \
miguelndecarvalho/speedtest-exporter
```

Via **docker-compose**:

```docker-compose
version: "3.0"
services:
speedtest-exporter:
image: miguelndecarvalho/speedtest-exporter
container_name: speedtest-exporter
ports:
- 9112:9112
restart: unless-stopped
```

Then just acess the page `http://localhost:9112/` and you will have the metrics.

## TO Do List

- [ ] Add option to choose **Server ID**
- [ ] Add option to choose the interval

0 comments on commit 9d5e2c4

Please sign in to comment.