debian-mirror-gitlab/doc/administration/monitoring/performance/grafana_configuration.md

123 lines
5.1 KiB
Markdown
Raw Normal View History

2020-06-23 00:09:42 +05:30
---
stage: Monitor
group: APM
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#designated-technical-writers
---
2016-11-03 12:29:30 +05:30
# Grafana Configuration
2019-10-12 21:52:04 +05:30
[Grafana](https://grafana.com/) is a tool that allows you to visualize time
2020-05-24 23:13:21 +05:30
series metrics through graphs and dashboards. GitLab writes performance data to Prometheus
2019-09-04 21:01:54 +05:30
and Grafana will allow you to query to display useful graphs.
2016-11-03 12:29:30 +05:30
## Installation
2020-05-24 23:13:21 +05:30
[Omnibus GitLab can help you install Grafana (recommended)](https://docs.gitlab.com/omnibus/settings/grafana.html)
2019-09-04 21:01:54 +05:30
or Grafana supplies package repositories (Yum/Apt) for easy installation.
2020-04-22 19:07:51 +05:30
See [Grafana installation documentation](https://grafana.com/docs/grafana/latest/installation/)
2016-11-03 12:29:30 +05:30
for detailed steps.
2019-09-04 21:01:54 +05:30
NOTE: **Note:**
Before starting Grafana for the first time, set the admin user
2016-11-03 12:29:30 +05:30
and password in `/etc/grafana/grafana.ini`. Otherwise, the default password
will be `admin`.
## Configuration
Login as the admin user. Expand the menu by clicking the Grafana logo in the
top left corner. Choose 'Data Sources' from the menu. Then, click 'Add new'
in the top bar.
![Grafana empty data source page](img/grafana_data_source_empty.png)
![Grafana data source configurations](img/grafana_data_source_configuration.png)
## Import Dashboards
You can now import a set of default dashboards that will give you a good
start on displaying useful information. GitLab has published a set of default
2020-04-22 19:07:51 +05:30
[Grafana dashboards](https://gitlab.com/gitlab-org/grafana-dashboards) to get you started. Clone the
2016-11-03 12:29:30 +05:30
repository or download a zip/tarball, then follow these steps to import each
JSON file.
Open the dashboard dropdown menu and click 'Import'
![Grafana dashboard dropdown](img/grafana_dashboard_dropdown.png)
Click 'Choose file' and browse to the location where you downloaded or cloned
the dashboard repository. Pick one of the JSON files to import.
![Grafana dashboard import](img/grafana_dashboard_import.png)
Once the dashboard is imported, be sure to click save icon in the top bar. If
you do not save the dashboard after importing it will be removed when you
navigate away.
![Grafana save icon](img/grafana_save_icon.png)
Repeat this process for each dashboard you wish to import.
Alternatively you can automatically import all the dashboards into your Grafana
2020-04-22 19:07:51 +05:30
instance. See the README of the [Grafana dashboards](https://gitlab.com/gitlab-org/grafana-dashboards)
2016-11-03 12:29:30 +05:30
repository for more information on this process.
2019-09-30 21:07:59 +05:30
## Integration with GitLab UI
2020-06-23 00:09:42 +05:30
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/issues/61005) in GitLab 12.1.
2019-09-30 21:07:59 +05:30
If you have set up Grafana, you can enable a link to access it easily from the sidebar:
2020-03-13 15:44:24 +05:30
1. Go to the **Admin Area > Settings > Metrics and profiling**.
1. Expand **Metrics - Grafana**.
2019-09-30 21:07:59 +05:30
1. Check the "Enable access to Grafana" checkbox.
1. If Grafana is enabled through Omnibus GitLab and on the same server,
2020-03-07 23:17:34 +05:30
leave **Grafana URL** unchanged. It should be `/-/grafana`.
In any other case, enter the full URL of the Grafana instance.
2019-09-30 21:07:59 +05:30
1. Click **Save changes**.
2020-03-13 15:44:24 +05:30
1. The new link will be available in the **Admin Area > Monitoring > Metrics Dashboard**.
2019-09-30 21:07:59 +05:30
2019-10-12 21:52:04 +05:30
## Security Update
Users running GitLab version 12.0 or later should immediately upgrade to one of the following security releases due to a known vulnerability with the embedded Grafana dashboard:
- 12.0.6
- 12.1.6
After upgrading, the Grafana dashboard will be disabled and the location of your existing Grafana data will be changed from `/var/opt/gitlab/grafana/data/` to `/var/opt/gitlab/grafana/data.bak.#{Date.today}/`.
To prevent the data from being relocated, you can run the following command prior to upgrading:
2020-03-13 15:44:24 +05:30
```shell
2019-10-12 21:52:04 +05:30
echo "0" > /var/opt/gitlab/grafana/CVE_reset_status
```
To reinstate your old data, move it back into its original location:
2020-03-13 15:44:24 +05:30
```shell
2019-10-12 21:52:04 +05:30
sudo mv /var/opt/gitlab/grafana/data.bak.xxxx/ /var/opt/gitlab/grafana/data/
```
However, you should **not** reinstate your old data _except_ under one of the following conditions:
1. If you are certain that you changed your default admin password when you enabled Grafana
1. If you run GitLab in a private network, accessed only by trusted users, and your Grafana login page has not been exposed to the internet
2020-04-08 14:13:33 +05:30
If you require access to your old Grafana data but do not meet one of these criteria, you may consider:
1. Reinstating it temporarily.
2020-04-22 19:07:51 +05:30
1. [Exporting the dashboards](https://grafana.com/docs/grafana/latest/reference/export_import/#exporting-a-dashboard) you need.
1. Refreshing the data and [re-importing your dashboards](https://grafana.com/docs/grafana/latest/reference/export_import/#importing-a-dashboard).
2020-04-08 14:13:33 +05:30
DANGER: **Danger:**
This poses a temporary vulnerability while your old Grafana data is in use and the decision to do so should be weighed carefully with your need to access existing data and dashboards.
2019-10-12 21:52:04 +05:30
2020-04-22 19:07:51 +05:30
For more information and further mitigation details, please refer to our [blog post on the security release](https://about.gitlab.com/releases/2019/08/12/critical-security-release-gitlab-12-dot-1-dot-6-released/).
2019-10-12 21:52:04 +05:30
2016-11-03 12:29:30 +05:30
---
Read more on:
2020-03-13 15:44:24 +05:30
- [Introduction to GitLab Performance Monitoring](index.md)
2016-11-03 12:29:30 +05:30
- [GitLab Configuration](gitlab_configuration.md)