Commit be7b2c55 authored by GitLab Bot's avatar GitLab Bot

Automatic merge of gitlab-org/gitlab master

parents a51df23d 40a0fa5d
......@@ -101,7 +101,7 @@ Archived logs are considered as [job artifacts](job_artifacts.md).
Therefore, when you [set up the object storage integration](job_artifacts.md#object-storage-settings),
job logs are automatically migrated to it along with the other job artifacts.
See "Phase 4: uploading" in [Data flow](#data-flow) to learn about the process.
See "Phase 3: uploading" in [Data flow](#data-flow) to learn about the process.
## Prevent local disk usage
......
......@@ -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