diff --git a/docs/sources/enterprise/enterprise-configuration.md b/docs/sources/enterprise/enterprise-configuration.md index 43325a518d8..379122f2c98 100644 --- a/docs/sources/enterprise/enterprise-configuration.md +++ b/docs/sources/enterprise/enterprise-configuration.md @@ -133,6 +133,22 @@ Maximum number of concurrent calls to the rendering service. Scale factor for rendering images. Value `2` is enough for monitor resolutions, `4` would be better for printed material. Setting a higher value affects performance and memory. +### fonts_path + +Path to the directory containing font files. + +### font_regular + +Name of the TrueType font file with regular style. + +### font_bold + +Name of the TrueType font file with bold style. + +### font_italic + +Name of the TrueType font file with italic style. + ## [auditing] [Auditing]({{< relref "auditing.md" >}}) allows you to track important changes to your Grafana instance. By default, audit logs are logged to file but the auditing feature also supports sending logs directly to Loki. diff --git a/docs/sources/enterprise/reporting.md b/docs/sources/enterprise/reporting.md index 79068572d64..594a006204e 100644 --- a/docs/sources/enterprise/reporting.md +++ b/docs/sources/enterprise/reporting.md @@ -118,7 +118,9 @@ You can send reports programmatically with the [send report]({{< relref "../http When generating reports, each panel renders separately before being collected in a PDF. The per panel rendering timeout and number of concurrently rendered panels can be configured. -To modify the panels' clarity you can set a scale factor for the rendered images. A higher scale factor is more legible but will increase the file size of the generated PDF. +To make a panel more legible, you can set a scale factor for the rendered images. However, a higher scale factor increases the file size of the generated PDF. + +You can also specify custom fonts that support different Unicode scripts. The DejaVu font is the default used for PDF rendering. These options are available in the [configuration]({{< relref "../administration/configuration.md">}}) file. @@ -131,6 +133,14 @@ concurrent_render_limit = 4 # Set the scale factor for rendering images. 2 is enough for monitor resolutions # 4 would be better for printed material. Setting a higher value affects performance and memory image_scale_factor = 2 +# Path to the directory containing font files +fonts_path = +# Name of the TrueType font file with regular style +font_regular = DejaVuSansCondensed.ttf +# Name of the TrueType font file with bold style +font_bold = DejaVuSansCondensed-Bold.ttf +# Name of the TrueType font file with italic style +font_italic = DejaVuSansCondensed-Oblique.ttf ``` ## Report time range