Commit ff6c14da authored by Greg Myers's avatar Greg Myers

Add missing . to jq log parsing example

jq 'select(status >= 500)' <FILE> will fail, status needs a . before it
parent 6c3d2d1f
...@@ -60,7 +60,7 @@ zcat some_json.log.25.gz | (head -1; tail -1) | jq '.time' ...@@ -60,7 +60,7 @@ zcat some_json.log.25.gz | (head -1; tail -1) | jq '.time'
#### Find all requests with a 5XX status code #### Find all requests with a 5XX status code
```shell ```shell
jq 'select(status >= 500)' <FILE> jq 'select(.status >= 500)' <FILE>
``` ```
#### Top 10 slowest requests #### 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