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
dc4d8661
Commit
dc4d8661
authored
Jan 19, 2021
by
Matthias Käppler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add docs for new gitlab-exporter server_name setting
parent
141b45f3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
0 deletions
+24
-0
doc/administration/monitoring/prometheus/gitlab_exporter.md
doc/administration/monitoring/prometheus/gitlab_exporter.md
+24
-0
No files found.
doc/administration/monitoring/prometheus/gitlab_exporter.md
View file @
dc4d8661
...
...
@@ -30,3 +30,27 @@ To enable the GitLab exporter in an Omnibus GitLab instance:
Prometheus automatically begins collecting performance data from
the GitLab exporter exposed at
`localhost:9168`
.
## Use a different Rack server
>- Introduced in [Omnibus GitLab 13.8](https://gitlab.com/gitlab-org/omnibus-gitlab/-/merge_requests/4896).
>- WEBrick is now the default Rack server instead of Puma.
By default, the GitLab exporter runs on
[
WEBrick
](
https://github.com/ruby/webrick
)
, a single-threaded Ruby web server.
You can choose a different Rack server that better matches your performance needs.
For instance, in multi-node setups that contain a large number of Prometheus scrapers
but only a few monitoring nodes, you may decide to run a multi-threaded server such as Puma instead.
To change the Rack server to Puma:
1.
Edit
`/etc/gitlab/gitlab.rb`
.
1.
Add, or find and uncomment, the following line, and set it to
`puma`
:
```
ruby
gitlab_exporter
[
'server_name'
]
=
'puma'
```
1.
Save the file and
[
reconfigure GitLab
](
../../restart_gitlab.md#omnibus-gitlab-reconfigure
)
for the changes to take effect.
The supported Rack servers are
`webrick`
and
`puma`
.
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