mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
What's new docs for 6.7 release (#22721)
* added docs * Update docs/sources/guides/whats-new-in-v6-7.md * Docs: minor restruturing of whats new Co-authored-by: Leonard Gram <leo@xlson.com>
This commit is contained in:
parent
69a5530aec
commit
d11bb2e198
86
docs/sources/guides/whats-new-in-v6-7.md
Normal file
86
docs/sources/guides/whats-new-in-v6-7.md
Normal file
@ -0,0 +1,86 @@
|
||||
+++
|
||||
title = "What's New in Grafana v6.7"
|
||||
description = "Feature and improvement highlights for Grafana v6.7"
|
||||
keywords = ["grafana", "new", "documentation", "6.7", "release notes"]
|
||||
type = "docs"
|
||||
[menu.docs]
|
||||
name = "Version 6.7"
|
||||
identifier = "v6.7"
|
||||
parent = "whatsnew"
|
||||
weight = -16
|
||||
+++
|
||||
|
||||
# What's new in Grafana v6.7
|
||||
|
||||
This topic includes the release notes for the Grafana v6.7, which is currently in beta. For all details, read the full [CHANGELOG.md](https://github.com/grafana/grafana/blob/master/CHANGELOG.md).
|
||||
|
||||
Grafana 6.7 comes with a lot of new features and enhancements:
|
||||
|
||||
- [**Dashboard:** Enforce minimum refresh interval]({{< relref "#enforce-minimum-dashboard-refresh-interval" >}})
|
||||
- **Data source:** Google Sheets data source
|
||||
- [**Explore:** Query history]({{< relref "#query-history" >}})
|
||||
- [**Authorization:** Azure OAuth]({{< relref "#azure-oauth" >}})
|
||||
- [**Stackdriver:** Project Selector]({{< relref "#project-selector" >}})
|
||||
- [**Enterprise:** White Labeling for application title]({{< relref "#white-labeling-for-application-title" >}})
|
||||
- [**Enterprise:** Reporting configuration for timeout and concurrency]({{< relref "#reporting-configuration-for-timeout-and-concurrency" >}})
|
||||
- [**Enterprise:** Export dashboard as pdf]({{< relref "#export-dashboard-as-pdf" >}})
|
||||
- [**Enterprise:** Report landscape mode]({{< relref "#report-landscape-mode" >}})
|
||||
- [**Enterprise:** Azure OAuth Team Sync support]({{< relref "#azure-oauth-team-sync-support" >}})
|
||||
|
||||
## General features
|
||||
|
||||
### Query history
|
||||
> BETA: Query history is a beta feature. It is local to your browser and is not shared with others.
|
||||
|
||||
Query history is a new feature that lets you view and interact with the queries that you have previously run in Explore. You can add queries to the Explore query editor, write comments, create and share URL link, star your favourite queries and much more. Starred queries are displayed in "Starred" tab as well, so it is easier to reuse queries that you run often without typing them from scratch.
|
||||
|
||||
Learn more about query history in [documentation]({{< relref "../features/explore" >}}).
|
||||
|
||||
{{< docs-imagebox img="/img/docs/v67/rich-history.gif" max-width="1024px" caption="Query history" >}}
|
||||
|
||||
### Azure OAuth
|
||||
Grafana 6.7 comes with a new OAuth integration for Microsoft Azure Active Directory. It’s possible to assign Users and Groups to Grafana roles from the Azure Portal. Learn how to enable and configure it in the [documentation]({{< relref "../auth/azuread/" >}}).
|
||||
|
||||
### Enforce minimum dashboard refresh interval
|
||||
|
||||
Allowing a low dashboard refresh interval can cause severe load on data sources and Grafana. Grafana v6.7 allows you to restrict the dashboard refresh interval so it cannot be set lower than a given interval. This provides a way for administrators to control dashboard refresh behavior on a global level.
|
||||
|
||||
Refer to min_refresh_interval in [Configuration]({{< relref "../administration/configuration/#min-refresh-interval" >}}) for further information and how to enable this.
|
||||
|
||||
### Stackdriver Project Selector
|
||||
A Stackdriver data source in Grafana is configured for one service account only. That service account is always associated with a default project in Google Cloud Platform (GCP). Depending on your setup in GCP, the service account might be granted access to more projects than just the default project.
|
||||
|
||||
In Grafana 6.7, the query editor has been enhanced with a project selector that makes it possible to query different projects without changing datasource. Many thanks [Eraac](https://github.com/Eraac), [eliaslaouiti](https://github.com/eliaslaouiti) and [NaurisSadovskis](https://github.com/NaurisSadovskis) for making this happen!
|
||||
|
||||
## Grafana enterprise features
|
||||
|
||||
### White Labeling for application title
|
||||
This release adds a new white labeling option to customize the application title. Learn how to configure it in the [documentation]({{< relref "../enterprise/white-labeling/" >}}).
|
||||
|
||||
```
|
||||
[white_labeling]
|
||||
# Set to your company name to override application title
|
||||
app_title = Your Company
|
||||
```
|
||||
|
||||
### Reporting configuration for timeout and concurrency
|
||||
This release adds more configuration for the reporting feature rendering requests. You can set the panel rendering request timeout and the maximum number of concurrent calls to the rendering service in your configuration. Learn how to do it in the [documentation]({{< relref "../enterprise/reporting/" >}}).
|
||||
|
||||
```
|
||||
[reporting]
|
||||
# Set timeout for each panel rendering request
|
||||
rendering_timeout = 10s
|
||||
# Set maximum number of concurrent calls to the rendering service
|
||||
concurrent_render_limit = 10
|
||||
```
|
||||
|
||||
### Export dashboard as pdf
|
||||
This feature allows you to export the dashboard as a PDF document. All dashboard panels will be rendered as images and added into the PDF document.
|
||||
|
||||
### Report landscape mode
|
||||
You can now use either portrait or landscape mode in your reports. Portrait will render three panels per page and landscape two.
|
||||
{{< docs-imagebox img="/img/docs/enterprise/reports_create_new.png" max-width="1024px" caption="New report" >}}
|
||||
|
||||
### Azure OAuth Team Sync support
|
||||
When setting up OAuth with Microsoft Azure AD it’s now possible to sync Azure groups with Teams in Grafana.
|
||||
[Learn more]({{< relref "../auth/azuread/#team-sync-enterprise-only" >}}).
|
@ -195,6 +195,8 @@
|
||||
- name: What's new In Grafana
|
||||
link: /whatsnew/
|
||||
children:
|
||||
- name: Version 6.7
|
||||
link: /guides/whats-new-in-v6-7/
|
||||
- name: Version 6.6
|
||||
link: /guides/whats-new-in-v6-6/
|
||||
- name: Version 6.5
|
||||
|
Loading…
Reference in New Issue
Block a user