debian-mirror-gitlab/doc/operations/metrics/embed_grafana.md
2021-03-11 19:13:27 +05:30

3.9 KiB

stage group info
Monitor Health To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments

Embedding Grafana charts (FREE)

Grafana metrics can be embedded in GitLab Flavored Markdown.

Embedding charts via Grafana rendered images

You can embed live Grafana charts in issues as a direct linked rendered image. Your Grafana instance must be available to the target user, either as a public dashboard or on the same network. The Direct link rendered image sharing dialog within Grafana provides the link:

Grafana Direct Linked Rendered Image

For this embed to display correctly, the

Copy the link and add an image tag as inline HTML in your Markdown. You can tweak the query parameters to meet your needs, such as removing the &from= and &to= parameters to display a live chart. Here is example markup for a live chart from a GitLab public dashboard:

<img src="https://dashboards.gitlab.com/d/RZmbBr7mk/gitlab-triage?orgId=1&refresh=30s&var-env=gprd&var-environment=gprd&var-prometheus=prometheus-01-inf-gprd&var-prometheus_app=prometheus-app-01-inf-gprd&var-backend=All&var-type=All&var-stage=main&from=1580444107655&to=1580465707655"/>

This markup renders a graph of 5xx errors, like this:

Grafana dashboard embedded preview

Embedding charts via integration with Grafana HTTP API

Introduced in GitLab 12.5.

Each project can support integration with one Grafana instance. This configuration enables you to copy a link to a panel in Grafana, then paste it into a GitLab Markdown field. The chart renders in the GitLab chart format. To embed charts from a Grafana instance, the data source must:

  1. Be a Prometheus instance.

  2. Be proxyable, so the HTTP Access setting should be set to Server:

    HTTP Proxy Access

Setting up the Grafana integration

  1. In Grafana, generate an Admin-level API Token.
  2. In your GitLab project, navigate to Settings > Operations > Grafana Authentication.
  3. To enable the integration, check the Active checkbox.
  4. For Grafana URL, enter the base URL of the Grafana instance.
  5. For API Token, enter the Admin API Token you just generated.
  6. Click Save Changes.
  1. In Grafana, navigate to the dashboard you wish to embed a panel from. Grafana Metric Panel
  2. In the upper-left corner of the page, select a specific value for each variable required for the queries in the chart. Select Query Variables
  3. In Grafana, click on a panel's title, then click Share to open the panel's sharing dialog to the Link tab. If you click the dashboard's share panel instead, GitLab attempts to embed the first supported panel on the dashboard (if available).
  4. If your Prometheus queries use Grafana's custom template variables, ensure the Template variables option is toggled to On. Of Grafana global template variables, only $__interval, $__from, and $__to are supported.
  5. Toggle On the Current time range option to specify the time range of the chart. Otherwise, the default range is the last 8 hours. Grafana Sharing Dialog
  6. Click Copy to copy the URL to the clipboard.
  7. In GitLab, paste the URL into a Markdown field and save. The chart takes a few moments to render. GitLab Rendered Grafana Panel