Commit 041afb4a authored by Achilleas Pipinellis's avatar Achilleas Pipinellis

Merge branch 'docs-jq-log-parse-example-fix' into 'master'

Add missing . to jq log parsing example

See merge request gitlab-org/gitlab!67268
parents 61bce846 ff6c14da
......@@ -60,7 +60,7 @@ zcat some_json.log.25.gz | (head -1; tail -1) | jq '.time'
#### Find all requests with a 5XX status code
```shell
jq 'select(status >= 500)' <FILE>
jq 'select(.status >= 500)' <FILE>
```
#### Top 10 slowest requests
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment