Skip to content

Commit 5c44cf9

Browse files
fix(post): grammar and context
1 parent 13e8794 commit 5c44cf9

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

_posts/2021-11-06-homelab-tour-2021.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ Well, here it is! My Late 2021 Server Rack and HomeLab tour! This is a special
1818

1919
## 📦 Gear in this video 📦
2020

21-
2221
2u Rack Shelf - [https://amzn.to/2ZVSJKN](https://amzn.to/2ZVSJKN)
2322

2423
APC 1500VA UP - [https://amzn.to/3GXLJh6](https://amzn.to/3GXLJh6)

_posts/2021-11-20-grafana-loki.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ Install docker plugin
179179
docker plugin install grafana/loki-docker-driver:latest --alias loki --grant-all-permissions
180180
```
181181

182-
edit docker daemon config
182+
Edit docker daemon config
183183

184184
```bash
185185
sudo nano /etc/docker/daemon.json
@@ -197,10 +197,14 @@ sudo nano /etc/docker/daemon.json
197197
}
198198
```
199199

200+
Restart docker daemon.
201+
200202
```bash
201203
sudo systemctl restart docker
202204
```
203205

206+
You will also need to recreate your containers after applying this setting *
207+
204208
## LogQL sample queries
205209

206210
Query all logs from the `varlogs` stream
@@ -209,14 +213,14 @@ Query all logs from the `varlogs` stream
209213
{job="varlogs"}
210214
```
211215

212-
query all logs from the `varlogs` stream and filter on `docker`
216+
Query all logs from the `varlogs` stream and filter on `docker`
213217

214218
```sql
215219
{job="varlogs"} |= "docker"
216220

217221
```
218222

219-
query all logs from the `container_name` label of `uptime-kuma` and filter on `host` of `juno`
223+
Query all logs from the `container_name` label of `uptime-kuma` and filter on `host` of `juno`
220224

221225
```sql
222226
{container_name="uptime-kuma", host="juno"}

0 commit comments

Comments
 (0)