Skip to content
Snippets Groups Projects
Commit 04edce46 authored by Carl Bergquist's avatar Carl Bergquist Committed by Tom Wilkie
Browse files

change default port for loki (#46)

* changes default port for loki

80 is a privileged port on linux which requires root access.
Which makes it harder to get started locally.

closes #40

* use grafana/grafana:master since it contains more fixes
parent 3e4448aa
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,7 @@ Grafana is Loki's UI, so you'll also want to run one of those:
$ docker run -ti -p 3000:3000 -e "GF_EXPLORE_ENABLED=true" grafana/grafana:master
```
In the Grafana UI (http://localhost:3000), log in with "admin"/"admin", add a new "Grafana Logging" datasource for `http://host.docker.internal:80`, then go to explore and enjoy!
In the Grafana UI (http://localhost:3000), log in with "admin"/"admin", add a new "Grafana Logging" datasource for `http://host.docker.internal:3100`, then go to explore and enjoy!
## Usage Instructions
......
auth_enabled: false
server:
http_listen_port: 3100
ingester:
lifecycler:
interface_names:
......
......@@ -6,7 +6,7 @@ positions:
filename: /tmp/positions.yaml
client:
url: http://localhost/api/prom/push
url: http://localhost:3100/api/prom/push
scrape_configs:
- job_name: system
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment