diff options
author | Evan Read <eread@gitlab.com> | 2019-04-07 23:49:56 +0000 |
---|---|---|
committer | Evan Read <eread@gitlab.com> | 2019-04-07 23:49:56 +0000 |
commit | 0ef0c1994b050b35b50d0f3f4a0fe1c4c67f1072 (patch) | |
tree | d6c1b4cadd49768f45e6d734e6ac52b28bb1a448 /doc/administration | |
parent | b4165554113a7f9ce9fecd7d169f9a64686b5c44 (diff) | |
parent | 70fff3c06bfbd0caec7e686481ec6f7920219599 (diff) | |
download | gitlab-ce-0ef0c1994b050b35b50d0f3f4a0fe1c4c67f1072.tar.gz |
Merge branch 'patch-49' into 'master'
docs: fix artifacts folder path, according to GitLab CE 11.8.2
See merge request gitlab-org/gitlab-ce!26536
Diffstat (limited to 'doc/administration')
-rw-r--r-- | doc/administration/job_traces.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/administration/job_traces.md b/doc/administration/job_traces.md index 63945506f3c..aa9d87562a3 100644 --- a/doc/administration/job_traces.md +++ b/doc/administration/job_traces.md @@ -10,13 +10,13 @@ In the following table you can see the phases a trace goes through. | Phase | State | Condition | Data flow | Stored path | | ----- | ----- | --------- | --------- | ----------- | -| 1: patching | Live trace | When a job is running | GitLab Runner => Unicorn => file storage |`#{ROOT_PATH}/builds/#{YYYY_mm}/#{project_id}/#{job_id}.log`| -| 2: overwriting | Live trace | When a job is finished | GitLab Runner => Unicorn => file storage |`#{ROOT_PATH}/builds/#{YYYY_mm}/#{project_id}/#{job_id}.log`| -| 3: archiving | Archived trace | After a job is finished | Sidekiq moves live trace to artifacts folder |`#{ROOT_PATH}/shared/artifacts/#{disk_hash}/#{YYYY_mm_dd}/#{job_id}/#{job_artifact_id}/job.log`| +| 1: patching | Live trace | When a job is running | GitLab Runner => Unicorn => file storage |`#{ROOT_PATH}/gitlab-ci/builds/#{YYYY_mm}/#{project_id}/#{job_id}.log`| +| 2: overwriting | Live trace | When a job is finished | GitLab Runner => Unicorn => file storage |`#{ROOT_PATH}/gitlab-ci/builds/#{YYYY_mm}/#{project_id}/#{job_id}.log`| +| 3: archiving | Archived trace | After a job is finished | Sidekiq moves live trace to artifacts folder |`#{ROOT_PATH}/gitlab-rails/shared/artifacts/#{disk_hash}/#{YYYY_mm_dd}/#{job_id}/#{job_artifact_id}/job.log`| | 4: uploading | Archived trace | After a trace is archived | Sidekiq moves archived trace to [object storage](#uploading-traces-to-object-storage) (if configured) |`#{bucket_name}/#{disk_hash}/#{YYYY_mm_dd}/#{job_id}/#{job_artifact_id}/job.log`| The `ROOT_PATH` varies per your environment. For Omnibus GitLab it -would be `/var/opt/gitlab/gitlab-ci`, whereas for installations from source +would be `/var/opt/gitlab`, whereas for installations from source it would be `/home/git/gitlab`. ## Changing the job traces local location |