diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b9bbbcb551..d1c154cf7a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -510,7 +510,7 @@ We have also extended the time zone options so you can select any of the standar - **Dashboard**: Fix for strange "dashboard not found" errors when opening links in dashboard settings. [#24416](https://github.com/grafana/grafana/pull/24416), [@torkelo](https://github.com/torkelo) - **Dashboard**: Fix so default data source is selected when data source can't be found in panel editor. [#24526](https://github.com/grafana/grafana/pull/24526), [@mckn](https://github.com/mckn) - **Dashboard**: Fixed issue changing a panel from transparent back to normal in panel editor. [#24483](https://github.com/grafana/grafana/pull/24483), [@torkelo](https://github.com/torkelo) -- **Dashboard**: Make header names reflect the field name when exporting to CSV file from the the panel inspector. [#24624](https://github.com/grafana/grafana/pull/24624), [@peterholmberg](https://github.com/peterholmberg) +- **Dashboard**: Make header names reflect the field name when exporting to CSV file from the panel inspector. [#24624](https://github.com/grafana/grafana/pull/24624), [@peterholmberg](https://github.com/peterholmberg) - **Dashboard**: Make sure side pane is displayed with tabs by default in panel editor. [#24636](https://github.com/grafana/grafana/pull/24636), [@dprokop](https://github.com/dprokop) - **Data source**: Fix query/annotation help content formatting. [#24687](https://github.com/grafana/grafana/pull/24687), [@AgnesToulet](https://github.com/AgnesToulet) - **Data source**: Fixes async mount errors. [#24579](https://github.com/grafana/grafana/pull/24579), [@Estrax](https://github.com/Estrax) diff --git a/devenv/docker/blocks/influxdb/telegraf.conf b/devenv/docker/blocks/influxdb/telegraf.conf index 5182f9bf536..2a56e4671d8 100644 --- a/devenv/docker/blocks/influxdb/telegraf.conf +++ b/devenv/docker/blocks/influxdb/telegraf.conf @@ -2169,7 +2169,7 @@ # # ## Metrics list # ## List of metrics can be found on Graylog webservice documentation. -# ## Or by hitting the the web service api at: +# ## Or by hitting the web service api at: # ## http://[graylog-host]:12900/system/metrics # metrics = [ # "jvm.cl.loaded", diff --git a/docs/sources/variables/variable-value-tags.md b/docs/sources/variables/variable-value-tags.md index 24b3734e8e1..987843d5154 100644 --- a/docs/sources/variables/variable-value-tags.md +++ b/docs/sources/variables/variable-value-tags.md @@ -31,4 +31,4 @@ Enter a data source query that should return a list of values for a specified ta The `$tag` variable will have the value of the tag that the user chooses. -For example, if you have a Graphite query for tags, `regions.*`, that returns a list of regions. The the values query could be `regions.$tag.*`, which if the user chooses Europe would be interpolated to `regions.Europe.*`. +For example, if you have a Graphite query for tags, `regions.*`, that returns a list of regions. The values query could be `regions.$tag.*`, which if the user chooses Europe would be interpolated to `regions.Europe.*`. diff --git a/packages/grafana-data/src/types/plugin.ts b/packages/grafana-data/src/types/plugin.ts index a339b4cc51c..745b971b0ca 100644 --- a/packages/grafana-data/src/types/plugin.ts +++ b/packages/grafana-data/src/types/plugin.ts @@ -4,7 +4,7 @@ import { KeyValue } from './data'; export enum PluginState { alpha = 'alpha', // Only included it `enable_alpha` is true beta = 'beta', // Will show a warning banner - deprecated = 'deprecated', // Will continue to work -- but not show up in the the options to add + deprecated = 'deprecated', // Will continue to work -- but not show up in the options to add } export enum PluginType { diff --git a/packages/grafana-runtime/src/services/AngularLoader.ts b/packages/grafana-runtime/src/services/AngularLoader.ts index b9eb563ddd5..c7beac4fbb5 100644 --- a/packages/grafana-runtime/src/services/AngularLoader.ts +++ b/packages/grafana-runtime/src/services/AngularLoader.ts @@ -66,7 +66,7 @@ let instance: AngularLoader; /** * Used during startup by Grafana to set the AngularLoader so it is available - * via the the {@link getAngularLoader} to the rest of the application. + * via the {@link getAngularLoader} to the rest of the application. * * @internal */ diff --git a/packages/grafana-runtime/src/services/EchoSrv.ts b/packages/grafana-runtime/src/services/EchoSrv.ts index bea4ffa1632..d9f1f8b7fd7 100644 --- a/packages/grafana-runtime/src/services/EchoSrv.ts +++ b/packages/grafana-runtime/src/services/EchoSrv.ts @@ -110,7 +110,7 @@ let singletonInstance: EchoSrv; /** * Used during startup by Grafana to set the EchoSrv so it is available - * via the the {@link getEchoSrv} to the rest of the application. + * via the {@link getEchoSrv} to the rest of the application. * * @internal */ diff --git a/packages/grafana-runtime/src/services/LocationSrv.ts b/packages/grafana-runtime/src/services/LocationSrv.ts index 720f5b8d3e1..37c0ee0818b 100644 --- a/packages/grafana-runtime/src/services/LocationSrv.ts +++ b/packages/grafana-runtime/src/services/LocationSrv.ts @@ -53,7 +53,7 @@ let singletonInstance: LocationSrv; /** * Used during startup by Grafana to set the LocationSrv so it is available - * via the the {@link getLocationSrv} to the rest of the application. + * via the {@link getLocationSrv} to the rest of the application. * * @internal */ diff --git a/packages/grafana-runtime/src/services/backendSrv.ts b/packages/grafana-runtime/src/services/backendSrv.ts index 87f5a7c7c43..d3811935fba 100644 --- a/packages/grafana-runtime/src/services/backendSrv.ts +++ b/packages/grafana-runtime/src/services/backendSrv.ts @@ -161,7 +161,7 @@ let singletonInstance: BackendSrv; /** * Used during startup by Grafana to set the BackendSrv so it is available - * via the the {@link getBackendSrv} to the rest of the application. + * via the {@link getBackendSrv} to the rest of the application. * * @internal */ diff --git a/packages/grafana-runtime/src/services/dataSourceSrv.ts b/packages/grafana-runtime/src/services/dataSourceSrv.ts index db4eb57b453..00a3060bc15 100644 --- a/packages/grafana-runtime/src/services/dataSourceSrv.ts +++ b/packages/grafana-runtime/src/services/dataSourceSrv.ts @@ -25,7 +25,7 @@ let singletonInstance: DataSourceSrv; /** * Used during startup by Grafana to set the DataSourceSrv so it is available - * via the the {@link getDataSourceSrv} to the rest of the application. + * via the {@link getDataSourceSrv} to the rest of the application. * * @internal */ diff --git a/packages/grafana-runtime/src/services/live.ts b/packages/grafana-runtime/src/services/live.ts index 6be74205612..18f596a2bc8 100644 --- a/packages/grafana-runtime/src/services/live.ts +++ b/packages/grafana-runtime/src/services/live.ts @@ -54,7 +54,7 @@ let singletonInstance: GrafanaLiveSrv; /** * Used during startup by Grafana to set the GrafanaLiveSrv so it is available - * via the the {@link getGrafanaLiveSrv} to the rest of the application. + * via the {@link getGrafanaLiveSrv} to the rest of the application. * * @internal */ diff --git a/packages/grafana-runtime/src/services/templateSrv.ts b/packages/grafana-runtime/src/services/templateSrv.ts index 6cf5d33060a..962dacd70c2 100644 --- a/packages/grafana-runtime/src/services/templateSrv.ts +++ b/packages/grafana-runtime/src/services/templateSrv.ts @@ -23,7 +23,7 @@ let singletonInstance: TemplateSrv; /** * Used during startup by Grafana to set the TemplateSrv so it is available - * via the the {@link getTemplateSrv} to the rest of the application. + * via the {@link getTemplateSrv} to the rest of the application. * * @internal */ diff --git a/packages/grafana-toolkit/src/cli/utils/githubClient.ts b/packages/grafana-toolkit/src/cli/utils/githubClient.ts index 05a1ff21f29..9643c166874 100644 --- a/packages/grafana-toolkit/src/cli/utils/githubClient.ts +++ b/packages/grafana-toolkit/src/cli/utils/githubClient.ts @@ -7,7 +7,7 @@ const enterpriseURL = 'https://api.github.com/repos/grafana/grafana-enterprise'; // // Two key things: // 1. You can specify whenever you want the credentials to be required or not when imported. -// 2. If the the credentials are available as part of the environment, even if +// 2. If the credentials are available as part of the environment, even if // they're not required - the library will use them. This allows us to overcome // any API rate limiting imposed without authentication. diff --git a/pkg/tsdb/azuremonitor/azure-log-analytics-datasource.go b/pkg/tsdb/azuremonitor/azure-log-analytics-datasource.go index 687010386da..7a77ac2344e 100644 --- a/pkg/tsdb/azuremonitor/azure-log-analytics-datasource.go +++ b/pkg/tsdb/azuremonitor/azure-log-analytics-datasource.go @@ -259,7 +259,7 @@ func (ar *AzureLogAnalyticsResponse) GetPrimaryResultTable() (*AzureLogAnalytics return &t, nil } } - return nil, fmt.Errorf("no data as PrimaryResult table is missing from the the response") + return nil, fmt.Errorf("no data as PrimaryResult table is missing from the response") } func (e *AzureLogAnalyticsDatasource) unmarshalResponse(res *http.Response) (AzureLogAnalyticsResponse, error) {