You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/sources/get-started/quick-start.md
+12-7
Original file line number
Diff line number
Diff line change
@@ -12,14 +12,15 @@ If you want to experiment with Loki, you can run Loki locally using the Docker C
12
12
The Docker Compose configuration instantiates the following components, each in its own container:
13
13
14
14
-**flog** a sample application which generates log lines. [flog](https://github.com/mingrammer/flog) is a log generator for common log formats.
15
-
-**Promtail** which scrapes the log lines from flog, and pushes them to Loki through the gateway.
15
+
-**Grafana Alloy** which scrapes the log lines from flog, and pushes them to Loki through the gateway.
16
16
-**Gateway** (NGINX) which receives requests and redirects them to the appropriate container based on the request's URL.
17
-
- One Loki **read** component.
18
-
- One Loki **write** component.
17
+
- One Loki **read** component (Query Frontend, Querier).
18
+
- One Loki **write** component (Distributor, Ingester).
@@ -63,16 +64,20 @@ This quickstart assumes you are running Linux.
63
64
✔ Network evaluate-loki_loki Created 0.1s
64
65
✔ Container evaluate-loki-minio-1 Started 0.6s
65
66
✔ Container evaluate-loki-flog-1 Started 0.6s
67
+
✔ Container evaluate-loki-backend-1 Started 0.8s
66
68
✔ Container evaluate-loki-write-1 Started 0.8s
67
69
✔ Container evaluate-loki-read-1 Started 0.8s
68
70
✔ Container evaluate-loki-gateway-1 Started 1.1s
69
71
✔ Container evaluate-loki-grafana-1 Started 1.4s
70
-
✔ Container evaluate-loki-promtail-1 Started 1.4s
72
+
✔ Container evaluate-loki-alloy-1 Started 1.4s
71
73
```
72
74
73
75
1. (Optional) Verify that the Loki cluster is up and running.
74
76
- The read component returns `ready` when you point a web browser at [http://localhost:3101/ready](http://localhost:3101/ready). The message `Query Frontend not ready: not ready: number of schedulers this worker is connected to is 0` will show prior to the read component being ready.
75
77
- The write component returns `ready` when you point a web browser at [http://localhost:3102/ready](http://localhost:3102/ready). The message `Ingester not ready: waiting for 15s after being ready` will show prior to the write component being ready.
78
+
79
+
1. (Optional) Verify that Grafana Alloy is running.
80
+
- Grafana Alloy's UI can be accessed at [http://localhost:12345](http://localhost:12345).
0 commit comments