Skip to content

Commit a2afcc6

Browse files
fix(post): Fixed logql syntax
1 parent 0071ba8 commit a2afcc6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Query all logs from the `container` label
8787
query all logs from the `container` stream and filter on `error`
8888

8989
```sql
90-
{container="uptime-kuma" |= "error"}
90+
{container="uptime-kuma"} |= "error"
9191

9292
```
9393

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ Query all logs from the `varlogs` stream
203203
query all logs from the `varlogs` stream and filter on `docker`
204204

205205
```sql
206-
{job="varlogs" |= "docker"}
206+
{job="varlogs"} |= "docker"
207207

208208
```
209209

0 commit comments

Comments
 (0)