diff --git a/advanced_examples/elk/README.md b/advanced_examples/elk/README.md index 04ff587..8a62a3f 100644 --- a/advanced_examples/elk/README.md +++ b/advanced_examples/elk/README.md @@ -8,7 +8,7 @@ This example runs four docker containers: - kibana (analytics and visualization platform, web interface) As in the -[Logstash example](http://github.com/erlang/docker-erlang-example/tree/logstash), +[Logstash example](https://github.com/erlang/docker-erlang-example/tree/master/advanced_examples/logstash), the dockerwatch container is started with a logging driver that sends everything printed on standard out on to a UDP port in the logstash container. Logstash forwards each log event over http to the @@ -120,7 +120,7 @@ services: The Logstash pipeline configuration is specified in `logstash/pipeline/logstash.conf`. This is the same as in the -[Logstash example](http://github.com/erlang/docker-erlang-example/tree/logstash), +[Logstash example](https://github.com/erlang/docker-erlang-example/tree/master/advanced_examples/logstash), except it has the additional `elasticsearch` output plugin. diff --git a/advanced_examples/minikube-dist/README.md b/advanced_examples/minikube-dist/README.md index 076971c..e7d45d7 100644 --- a/advanced_examples/minikube-dist/README.md +++ b/advanced_examples/minikube-dist/README.md @@ -241,7 +241,7 @@ EOF ## Testing -We can then test the API using the same curl commands as the [simple demo](http://github.com/erlang/docker-erlang-example/tree/minikube-simple): +We can then test the API using the same curl commands as the [simple demo](https://github.com/erlang/docker-erlang-example/tree/master/advanced_examples/minikube-simple): ``` > curl -H "Content-Type: application/json" -X POST -d "" $(minikube service dockerwatch --url | head -1)/cnt diff --git a/advanced_examples/minikube-prom-graf/README.md b/advanced_examples/minikube-prom-graf/README.md index 9b6926a..ecf47ab 100644 --- a/advanced_examples/minikube-prom-graf/README.md +++ b/advanced_examples/minikube-prom-graf/README.md @@ -4,7 +4,7 @@ This is a quick demo of using minikube to run an Erlang node with prometheus and The example we will use is the [Docker Watch](http://github.com/erlang/docker-erlang-example/tree/master) node. This demo assumes that you have done the -[Using Minikube](http://github.com/erlang/docker-erlang-example/tree/minikube-simple) demo. +[Using Minikube](https://github.com/erlang/docker-erlang-example/tree/master/advanced_examples/minikube-simple) demo. This is only meant to be an example of how to get started. It is not the only, nor neccesarily the best way to setup minikube with Erlang. @@ -117,7 +117,7 @@ You can view the entire new supervisor module [here](dockerwatch/src/dockerwatch ## Deploy Dockerwatch Now we should deploy the dockerwatch service almost the same way as was done in -[Using Minikube: Simple](http://github.com/erlang/docker-erlang-example/tree/minikube-simple). +[Using Minikube: Simple](https://github.com/erlang/docker-erlang-example/tree/master/advanced_examples/minikube-simple). So: ```