diff options
author | Aleksei Lipniagov <alipniagov@gitlab.com> | 2019-08-09 14:56:22 +0300 |
---|---|---|
committer | Aleksei Lipniagov <alipniagov@gitlab.com> | 2019-08-12 13:52:15 +0300 |
commit | 3f9815865c38aeec0007b4ef3c636be51967b661 (patch) | |
tree | 0790f5bb23fedf11d706bf0abfd203045ad97e2f /changelogs | |
parent | 7a48b4d6b0f3e92887407768d639d13489d0d495 (diff) | |
download | gitlab-ce-3f9815865c38aeec0007b4ef3c636be51967b661.tar.gz |
Fix metric files being wiped after the app starts
When we hit our app with the initial request, in `warmup`,
some metrics already being created as well as corresponding files.
If we do `multiproc_file_dir` cleanup after that, we delete the files
from the dir while keeping them in memory which leads to the incorrect
behavior: the metric is being updated in in-memory, while is not present
in the db, not sent to Prometheus as the result.
Diffstat (limited to 'changelogs')
-rw-r--r-- | changelogs/unreleased/65278-fix-puma-master-counter-wipe.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/changelogs/unreleased/65278-fix-puma-master-counter-wipe.yml b/changelogs/unreleased/65278-fix-puma-master-counter-wipe.yml new file mode 100644 index 00000000000..fb9d6fa251d --- /dev/null +++ b/changelogs/unreleased/65278-fix-puma-master-counter-wipe.yml @@ -0,0 +1,5 @@ +--- +title: Fix active metric files being wiped after the app starts +merge_request: 31668 +author: +type: fixed |