mirror of
https://github.com/grafana/grafana.git
synced 2025-07-28 23:12:44 +08:00

* Chunking out the long Transformation topic. Also, updated TOC. Local build looks fine. * More changes. * More re-arranging of content. Fixed links in Types and Options page. * Capitalization changes. * Changes to Overview section. * Fixed merge conflicts. * Fixed typo to fix build failure. * Update docs/sources/panels/transformations/types-options.md Co-authored-by: Diana Payton <52059945+oddlittlebird@users.noreply.github.com> * Changes from Diana. * Fixed a typo in a relref. * Fixed broken link. * Update link in Troubleshooting topic. Co-authored-by: Diana Payton <52059945+oddlittlebird@users.noreply.github.com>
44 lines
1.8 KiB
Markdown
44 lines
1.8 KiB
Markdown
+++
|
|
title = "Troubleshooting"
|
|
description = "Guide to troubleshooting Grafana problems"
|
|
keywords = ["grafana", "troubleshooting", "documentation", "guide"]
|
|
type = "docs"
|
|
[menu.docs]
|
|
weight = 100
|
|
+++
|
|
|
|
# Troubleshooting
|
|
|
|
This page lists some tools and advice to help troubleshoot common Grafana issues.
|
|
|
|
## Troubleshoot with logs
|
|
|
|
If you encounter an error or problem, then you can check the Grafana server log. Usually located at `/var/log/grafana/grafana.log` on Unix systems or in `<grafana_install_dir>/data/log` on other platforms and manual installations.
|
|
|
|
You can enable more logging by changing log level in the Grafana configuration file.
|
|
|
|
For more information, refer to [Enable debug logging in Grafana CLI]({{< relref "../administration/cli.md#enable-debug-logging" >}}) and the [log section in Configuration]({{< relref "../administration/configuration.md#log" >}}).
|
|
|
|
## Troubleshoot transformations
|
|
|
|
Order of transformations matters. If the final data output from multiple transformations looks wrong, try changing the transformation order. Each transformation transforms data returned by the previous transformation, not the original raw data.
|
|
|
|
For more information, refer to [Debug transformations]({{< relref "../panels/transformations/apply-transformations.md" >}}).
|
|
|
|
## Text missing with server-side image rendering (RPM-based Linux)
|
|
|
|
Server-side image (png) rendering is a feature that is optional but very useful when sharing visualizations, for example in alert notifications.
|
|
|
|
If the image is missing text, then make sure you have font packages installed.
|
|
|
|
```bash
|
|
sudo yum install fontconfig
|
|
sudo yum install freetype*
|
|
sudo yum install urw-fonts
|
|
```
|
|
|
|
## FAQs
|
|
|
|
Check out the [FAQ section](https://community.grafana.com/c/howto/faq) on the Grafana Community page for answers to frequently
|
|
asked questions.
|