Explicitly set all front matter labels in the source files (#71548)
* Set every page to have defaults of 'Enterprise' and 'Open source' labels
* Set administration pages to have of 'Cloud', 'Enterprise', and 'Open source' labels
* Set administration/enterprise-licensing pages to have 'Enterprise' labels
* Set administration/organization-management pages to have 'Enterprise' and 'Open source' labels
* Set administration/provisioning pages to have 'Enterprise' and 'Open source' labels
* Set administration/recorded-queries pages to have labels cloud,enterprise
* Set administration/roles-and-permissions/access-control pages to have labels cloud,enterprise
* Set administration/stats-and-license pages to have labels cloud,enterprise
* Set alerting pages to have labels cloud,enterprise,oss
* Set breaking-changes pages to have labels cloud,enterprise,oss
* Set dashboards pages to have labels cloud,enterprise,oss
* Set datasources pages to have labels cloud,enterprise,oss
* Set explore pages to have labels cloud,enterprise,oss
* Set fundamentals pages to have labels cloud,enterprise,oss
* Set introduction/grafana-cloud pages to have labels cloud
* Fix introduction pages products
* Set panels-visualizations pages to have labels cloud,enterprise,oss
* Set release-notes pages to have labels cloud,enterprise,oss
* Set search pages to have labels cloud,enterprise,oss
* Set setup-grafana/configure-security/audit-grafana pages to have labels cloud,enterprise
* Set setup-grafana/configure-security/configure-authentication pages to have labels cloud,enterprise,oss
* Set setup-grafana/configure-security/configure-authentication/enhanced-ldap pages to have labels cloud,enterprise
* Set setup-grafana/configure-security/configure-authentication/saml pages to have labels cloud,enterprise
* Set setup-grafana/configure-security/configure-database-encryption/encrypt-secrets-using-hashicorp-key-vault pages to have labels cloud,enterprise
* Set setup-grafana/configure-security/configure-request-security pages to have labels cloud,enterprise,oss
* Set setup-grafana/configure-security/configure-team-sync pages to have labels cloud,enterprise
* Set setup-grafana/configure-security/export-logs pages to have labels cloud,enterprise
* Set troubleshooting pages to have labels cloud,enterprise,oss
* Set whatsnew pages to have labels cloud,enterprise,oss
* Apply updated labels from review
---------
(cherry picked from commit 7eb17bccca)
Signed-off-by: Jack Baldry <jack.baldry@grafana.com>
Co-authored-by: brendamuir <100768211+brendamuir@users.noreply.github.com>
Co-authored-by: Isabel <76437239+imatwawana@users.noreply.github.com>
79 lines
2.3 KiB
Markdown
79 lines
2.3 KiB
Markdown
---
|
|
aliases:
|
|
- ../../plugins/error-handling/
|
|
description: How to handle errors in plugins.
|
|
keywords:
|
|
- grafana
|
|
- plugins
|
|
- plugin
|
|
- errors
|
|
- error handling
|
|
labels:
|
|
products:
|
|
- enterprise
|
|
- oss
|
|
title: Work with error handling
|
|
---
|
|
|
|
# Work with error handling
|
|
|
|
This guide explains how to handle errors in plugins and provides suggestions for common scenarios.
|
|
|
|
## Provide usable defaults
|
|
|
|
Allow the user to learn your plugin in small steps. Provide a useful default configuration so that:
|
|
|
|
- The user can get started right away.
|
|
- You can avoid unnecessary error messages.
|
|
|
|
For example, by selecting the first field of an expected type, the panel can display a visualization without any user configuration. If a user explicitly selects a field, then use that one. Otherwise, default to the first field of type `string`:
|
|
|
|
```ts
|
|
const numberField = frame.fields.find((field) =>
|
|
options.numberFieldName ? field.name === options.numberFieldName : field.type === FieldType.number
|
|
);
|
|
```
|
|
|
|
## Display error messages
|
|
|
|
To display an error message to the user, `throw` an `Error` with the message you want to display:
|
|
|
|
```ts
|
|
throw new Error('An error occurred');
|
|
```
|
|
|
|
Grafana displays the error message in the top-left corner of the panel.
|
|
|
|
{{< figure src="/static/img/docs/panel_error.png" class="docs-image--no-shadow" max-width="850px" >}}
|
|
|
|
We recommend that you avoid displaying overly technical error messages to the user. If you want to let technical users report an error, consider logging it to the console instead.
|
|
|
|
```ts
|
|
try {
|
|
failingFunction();
|
|
} catch (err) {
|
|
console.error(err);
|
|
throw new Error('Something went wrong');
|
|
}
|
|
```
|
|
|
|
> **Note:** Grafana displays the exception message in the UI as written, so use grammatically correct sentences. For more information, refer to the [Documentation style guide](/docs/writers-toolkit/).
|
|
|
|
## Common error scenarios
|
|
|
|
Here are some examples of situations where you might want to display an error to the user.
|
|
|
|
### Invalid query response
|
|
|
|
Users have full freedom when they create data source queries for panels. If your panel plugin requires a specific format for the query response, then use the panel canvas to guide the user.
|
|
|
|
```ts
|
|
if (!numberField) {
|
|
throw new Error('Query result is missing a number field');
|
|
}
|
|
|
|
if (frame.length === 0) {
|
|
throw new Error('Query returned an empty result');
|
|
}
|
|
```
|