Skip to content

Commit

Permalink
docs: Fix missing quotes (#2247)
Browse files Browse the repository at this point in the history
  • Loading branch information
carlpett authored Jun 22, 2020
1 parent 6ab832b commit 42dccae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/logql.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ After writing the log stream selector, the resulting set of logs can be further
- `{job="mysql"} |= "error"`
- `{name="kafka"} |~ "tsdb-ops.*io:2003"`
- `` {name="cassandra"} |~ `error=\w+` ``
- `{instance=~"kafka-[23]",name="kafka"} != kafka.server:type=ReplicaManager`
- `{instance=~"kafka-[23]",name="kafka"} != "kafka.server:type=ReplicaManager"`

In the previous examples, `|=`, `|~`, and `!=` act as **filter operators** and
the following filter operators are supported:
Expand Down

0 comments on commit 42dccae

Please sign in to comment.