Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
52dd4670
Commit
52dd4670
authored
Apr 11, 2022
by
Katrin Leinweber
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Find most commonly logged Geo errors
parent
898599bd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
doc/administration/troubleshooting/log_parsing.md
doc/administration/troubleshooting/log_parsing.md
+12
-0
No files found.
doc/administration/troubleshooting/log_parsing.md
View file @
52dd4670
...
@@ -143,6 +143,18 @@ CT: 297 ROUTE: /api/:version/projects/:id/repository/tags DURS: 731.39,
...
@@ -143,6 +143,18 @@ CT: 297 ROUTE: /api/:version/projects/:id/repository/tags DURS: 731.39,
CT: 190 ROUTE: /api/:version/projects/:id/repository/commits DURS: 1079.02, 979.68, 958.21
CT: 190 ROUTE: /api/:version/projects/:id/repository/commits DURS: 1079.02, 979.68, 958.21
```
```
### Parsing `gitlab-rails/geo.log`
#### Find most common Geo sync errors
If
[
the `geo:status` Rake task
](
../geo/replication/troubleshooting.md#sync-status-rake-task
)
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
```
### Parsing `gitaly/current`
### Parsing `gitaly/current`
#### Find all Gitaly requests sent from web UI
#### Find all Gitaly requests sent from web UI
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment