Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-05-10 18:13:04 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-05-10 18:13:04 +0300
commit4e9ceea7f8ff3e097ad45f6f54c1b7165248e848 (patch)
tree6cc413c085934f15c789d539f69dcb89600c71fb /doc/administration/logs
parent0e0df204c1a0d859ccbbe1be83a5e09a53381f17 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/administration/logs')
-rw-r--r--doc/administration/logs/log_parsing.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/administration/logs/log_parsing.md b/doc/administration/logs/log_parsing.md
index 40d6059d246..d9520ea9bc0 100644
--- a/doc/administration/logs/log_parsing.md
+++ b/doc/administration/logs/log_parsing.md
@@ -223,9 +223,12 @@ repeatedly reports that some items never reach 100%,
the following command helps to focus on the most common errors.
```shell
-jq --raw-output 'select(.severity == "ERROR") | [.project_path, .message] | @tsv' geo.log | sort | uniq -c | sort | tail
+jq --raw-output 'select(.severity == "ERROR") | [.project_path, .class, .message, .error] | @tsv' geo.log | sort | uniq -c | sort | tail
```
+Refer to our [Geo troubleshooting page](../geo/replication/troubleshooting.md)
+for advice about specific error messages.
+
### Parsing `gitaly/current`
Use the following examples to [troubleshoot Gitaly](../gitaly/troubleshooting.md).