diff --git a/examples/app-basic/.config/.eslintrc b/examples/app-basic/.config/.eslintrc index 1486ed2e0..d2df76b54 100644 --- a/examples/app-basic/.config/.eslintrc +++ b/examples/app-basic/.config/.eslintrc @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-eslint-config + * https://grafana.com/developers//developers/plugin-tools/get-started/set-up-development-environment#extend-the-eslint-config */ { "extends": ["@grafana/eslint-config"], diff --git a/examples/app-basic/.config/jest.config.js b/examples/app-basic/.config/jest.config.js index 94489cb2b..09704b4fb 100644 --- a/examples/app-basic/.config/jest.config.js +++ b/examples/app-basic/.config/jest.config.js @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-jest-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-jest-config */ const path = require('path'); diff --git a/examples/app-basic/.config/tsconfig.json b/examples/app-basic/.config/tsconfig.json index 207b28fb5..15e64aca0 100644 --- a/examples/app-basic/.config/tsconfig.json +++ b/examples/app-basic/.config/tsconfig.json @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-typescript-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-typescript-config */ { "compilerOptions": { diff --git a/examples/app-basic/.config/webpack/webpack.config.ts b/examples/app-basic/.config/webpack/webpack.config.ts index 212eb4364..87f4d5368 100644 --- a/examples/app-basic/.config/webpack/webpack.config.ts +++ b/examples/app-basic/.config/webpack/webpack.config.ts @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-webpack-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-webpack-config */ import CopyWebpackPlugin from 'copy-webpack-plugin'; diff --git a/examples/app-basic/README.md b/examples/app-basic/README.md index cbfa8d66d..a5fc98b90 100644 --- a/examples/app-basic/README.md +++ b/examples/app-basic/README.md @@ -188,7 +188,7 @@ Example payload: Below you can find source code for existing app plugins and other related documentation. - [Grafana Synthetic Monitoring App](https://github.com/grafana/synthetic-monitoring-app) -- [Plugin.json documentation](https://grafana.com/developers/plugin-tools/reference-plugin-json) +- [Plugin.json documentation](https://grafana.com/developers/plugin-tools/reference/plugin-json) - [Sign a plugin](https://grafana.com/developers/plugin-tools/publish-a-plugin/sign-a-plugin) diff --git a/examples/app-with-backend/.config/.eslintrc b/examples/app-with-backend/.config/.eslintrc index 1486ed2e0..b61476097 100755 --- a/examples/app-with-backend/.config/.eslintrc +++ b/examples/app-with-backend/.config/.eslintrc @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-eslint-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-eslint-config */ { "extends": ["@grafana/eslint-config"], diff --git a/examples/app-with-backend/.config/jest-setup.js b/examples/app-with-backend/.config/jest-setup.js index b9f57384a..0687875e8 100755 --- a/examples/app-with-backend/.config/jest-setup.js +++ b/examples/app-with-backend/.config/jest-setup.js @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-jest-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-jest-config */ import '@testing-library/jest-dom'; diff --git a/examples/app-with-backend/.config/jest.config.js b/examples/app-with-backend/.config/jest.config.js index 94489cb2b..09704b4fb 100755 --- a/examples/app-with-backend/.config/jest.config.js +++ b/examples/app-with-backend/.config/jest.config.js @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-jest-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-jest-config */ const path = require('path'); diff --git a/examples/app-with-backend/.config/tsconfig.json b/examples/app-with-backend/.config/tsconfig.json index 207b28fb5..15e64aca0 100755 --- a/examples/app-with-backend/.config/tsconfig.json +++ b/examples/app-with-backend/.config/tsconfig.json @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-typescript-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-typescript-config */ { "compilerOptions": { diff --git a/examples/app-with-backend/.config/webpack/webpack.config.ts b/examples/app-with-backend/.config/webpack/webpack.config.ts index 6ab3c4a6c..e1def4be5 100755 --- a/examples/app-with-backend/.config/webpack/webpack.config.ts +++ b/examples/app-with-backend/.config/webpack/webpack.config.ts @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-webpack-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-webpack-config */ import CopyWebpackPlugin from 'copy-webpack-plugin'; diff --git a/examples/app-with-backend/README.md b/examples/app-with-backend/README.md index c4e0cf35e..58dd97a6c 100755 --- a/examples/app-with-backend/README.md +++ b/examples/app-with-backend/README.md @@ -66,7 +66,7 @@ App plugins can let you create a custom out-of-the-box monitoring experience by ### Backend -1. Update [Grafana plugin SDK for Go](https://grafana.com/developers/plugin-tools/introduction/grafana-plugin-sdk-for-go) dependency to the latest minor version: +1. Update [Grafana plugin SDK for Go](https://grafana.com/developers/plugin-tools/key-concepts/backend-plugins/grafana-plugin-sdk-for-go) dependency to the latest minor version: ```bash go get -u github.com/grafana/grafana-plugin-sdk-go @@ -90,5 +90,5 @@ App plugins can let you create a custom out-of-the-box monitoring experience by Below you can find source code for existing app plugins and other related documentation. - [All plugin examples](https://github.com/grafana/grafana-plugin-examples/tree/master/examples/) -- [Plugin.json documentation](https://grafana.com/developers/plugin-tools/reference-plugin-json) +- [Plugin.json documentation](https://grafana.com/developers/plugin-tools/reference/plugin-json) - [Sign a plugin](https://grafana.com/developers/plugin-tools/publish-a-plugin/sign-a-plugin) diff --git a/examples/app-with-dashboards/.config/.eslintrc b/examples/app-with-dashboards/.config/.eslintrc index 1486ed2e0..b61476097 100644 --- a/examples/app-with-dashboards/.config/.eslintrc +++ b/examples/app-with-dashboards/.config/.eslintrc @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-eslint-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-eslint-config */ { "extends": ["@grafana/eslint-config"], diff --git a/examples/app-with-dashboards/.config/jest-setup.js b/examples/app-with-dashboards/.config/jest-setup.js index b9f57384a..0687875e8 100644 --- a/examples/app-with-dashboards/.config/jest-setup.js +++ b/examples/app-with-dashboards/.config/jest-setup.js @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-jest-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-jest-config */ import '@testing-library/jest-dom'; diff --git a/examples/app-with-dashboards/.config/jest.config.js b/examples/app-with-dashboards/.config/jest.config.js index 94489cb2b..09704b4fb 100644 --- a/examples/app-with-dashboards/.config/jest.config.js +++ b/examples/app-with-dashboards/.config/jest.config.js @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-jest-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-jest-config */ const path = require('path'); diff --git a/examples/app-with-dashboards/.config/tsconfig.json b/examples/app-with-dashboards/.config/tsconfig.json index 207b28fb5..15e64aca0 100644 --- a/examples/app-with-dashboards/.config/tsconfig.json +++ b/examples/app-with-dashboards/.config/tsconfig.json @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-typescript-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-typescript-config */ { "compilerOptions": { diff --git a/examples/app-with-dashboards/.config/webpack/webpack.config.ts b/examples/app-with-dashboards/.config/webpack/webpack.config.ts index 6ab3c4a6c..e1def4be5 100644 --- a/examples/app-with-dashboards/.config/webpack/webpack.config.ts +++ b/examples/app-with-dashboards/.config/webpack/webpack.config.ts @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-webpack-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-webpack-config */ import CopyWebpackPlugin from 'copy-webpack-plugin'; diff --git a/examples/app-with-dashboards/README.md b/examples/app-with-dashboards/README.md index f0c4e53c9..2801e2de2 100644 --- a/examples/app-with-dashboards/README.md +++ b/examples/app-with-dashboards/README.md @@ -69,5 +69,5 @@ App plugins can let you create a custom out-of-the-box monitoring experience by Below you can find source code for existing app plugins and other related documentation. - [Basic app plugin example](https://github.com/grafana/grafana-plugin-examples/tree/master/examples/app-basic#readme) -- [Plugin.json documentation](https://grafana.com/developers/plugin-tools/reference-plugin-json) +- [Plugin.json documentation](https://grafana.com/developers/plugin-tools/reference/plugin-json) - [Sign a plugin](https://grafana.com/developers/plugin-tools/publish-a-plugin/sign-a-plugin) diff --git a/examples/app-with-extension-point/.config/.eslintrc b/examples/app-with-extension-point/.config/.eslintrc index 1486ed2e0..b61476097 100644 --- a/examples/app-with-extension-point/.config/.eslintrc +++ b/examples/app-with-extension-point/.config/.eslintrc @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-eslint-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-eslint-config */ { "extends": ["@grafana/eslint-config"], diff --git a/examples/app-with-extension-point/.config/jest.config.js b/examples/app-with-extension-point/.config/jest.config.js index 94489cb2b..09704b4fb 100644 --- a/examples/app-with-extension-point/.config/jest.config.js +++ b/examples/app-with-extension-point/.config/jest.config.js @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-jest-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-jest-config */ const path = require('path'); diff --git a/examples/app-with-extension-point/.config/tsconfig.json b/examples/app-with-extension-point/.config/tsconfig.json index 207b28fb5..15e64aca0 100644 --- a/examples/app-with-extension-point/.config/tsconfig.json +++ b/examples/app-with-extension-point/.config/tsconfig.json @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-typescript-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-typescript-config */ { "compilerOptions": { diff --git a/examples/app-with-extension-point/.config/webpack/webpack.config.ts b/examples/app-with-extension-point/.config/webpack/webpack.config.ts index 6ab3c4a6c..e1def4be5 100644 --- a/examples/app-with-extension-point/.config/webpack/webpack.config.ts +++ b/examples/app-with-extension-point/.config/webpack/webpack.config.ts @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-webpack-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-webpack-config */ import CopyWebpackPlugin from 'copy-webpack-plugin'; diff --git a/examples/app-with-extensions/.config/.eslintrc b/examples/app-with-extensions/.config/.eslintrc index 1486ed2e0..b61476097 100644 --- a/examples/app-with-extensions/.config/.eslintrc +++ b/examples/app-with-extensions/.config/.eslintrc @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-eslint-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-eslint-config */ { "extends": ["@grafana/eslint-config"], diff --git a/examples/app-with-extensions/.config/jest-setup.js b/examples/app-with-extensions/.config/jest-setup.js index b9f57384a..0687875e8 100644 --- a/examples/app-with-extensions/.config/jest-setup.js +++ b/examples/app-with-extensions/.config/jest-setup.js @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-jest-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-jest-config */ import '@testing-library/jest-dom'; diff --git a/examples/app-with-extensions/.config/jest.config.js b/examples/app-with-extensions/.config/jest.config.js index 94489cb2b..09704b4fb 100644 --- a/examples/app-with-extensions/.config/jest.config.js +++ b/examples/app-with-extensions/.config/jest.config.js @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-jest-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-jest-config */ const path = require('path'); diff --git a/examples/app-with-extensions/.config/tsconfig.json b/examples/app-with-extensions/.config/tsconfig.json index 207b28fb5..15e64aca0 100644 --- a/examples/app-with-extensions/.config/tsconfig.json +++ b/examples/app-with-extensions/.config/tsconfig.json @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-typescript-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-typescript-config */ { "compilerOptions": { diff --git a/examples/app-with-extensions/.config/webpack/webpack.config.ts b/examples/app-with-extensions/.config/webpack/webpack.config.ts index 6ab3c4a6c..e1def4be5 100644 --- a/examples/app-with-extensions/.config/webpack/webpack.config.ts +++ b/examples/app-with-extensions/.config/webpack/webpack.config.ts @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-webpack-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-webpack-config */ import CopyWebpackPlugin from 'copy-webpack-plugin'; diff --git a/examples/app-with-rbac/.config/.eslintrc b/examples/app-with-rbac/.config/.eslintrc index 1486ed2e0..b61476097 100644 --- a/examples/app-with-rbac/.config/.eslintrc +++ b/examples/app-with-rbac/.config/.eslintrc @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-eslint-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-eslint-config */ { "extends": ["@grafana/eslint-config"], diff --git a/examples/app-with-rbac/.config/jest-setup.js b/examples/app-with-rbac/.config/jest-setup.js index b9f57384a..0687875e8 100644 --- a/examples/app-with-rbac/.config/jest-setup.js +++ b/examples/app-with-rbac/.config/jest-setup.js @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-jest-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-jest-config */ import '@testing-library/jest-dom'; diff --git a/examples/app-with-rbac/.config/jest.config.js b/examples/app-with-rbac/.config/jest.config.js index 94489cb2b..09704b4fb 100644 --- a/examples/app-with-rbac/.config/jest.config.js +++ b/examples/app-with-rbac/.config/jest.config.js @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-jest-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-jest-config */ const path = require('path'); diff --git a/examples/app-with-rbac/.config/webpack/webpack.config.ts b/examples/app-with-rbac/.config/webpack/webpack.config.ts index 6ab3c4a6c..e1def4be5 100644 --- a/examples/app-with-rbac/.config/webpack/webpack.config.ts +++ b/examples/app-with-rbac/.config/webpack/webpack.config.ts @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-webpack-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-webpack-config */ import CopyWebpackPlugin from 'copy-webpack-plugin'; diff --git a/examples/app-with-rbac/src/README.md b/examples/app-with-rbac/src/README.md index 5621b02ca..ad5956ad1 100644 --- a/examples/app-with-rbac/src/README.md +++ b/examples/app-with-rbac/src/README.md @@ -34,7 +34,7 @@ Consider other [badges](https://shields.io/badges) as you feel appropriate for y Provide one or more paragraphs as an introduction to your plugin to help users understand why they should use it. Consider including screenshots: -- in [plugin.json](https://grafana.com/developers/plugin-tools/reference-plugin-json#info) include them as relative links. +- in [plugin.json](https://grafana.com/developers/plugin-tools/reference/plugin-json#info) include them as relative links. - in the README ensure they are absolute URLs. ## Requirements diff --git a/examples/app-with-scenes/.config/.eslintrc b/examples/app-with-scenes/.config/.eslintrc index 1486ed2e0..b61476097 100644 --- a/examples/app-with-scenes/.config/.eslintrc +++ b/examples/app-with-scenes/.config/.eslintrc @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-eslint-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-eslint-config */ { "extends": ["@grafana/eslint-config"], diff --git a/examples/app-with-scenes/.config/jest.config.js b/examples/app-with-scenes/.config/jest.config.js index 94489cb2b..09704b4fb 100644 --- a/examples/app-with-scenes/.config/jest.config.js +++ b/examples/app-with-scenes/.config/jest.config.js @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-jest-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-jest-config */ const path = require('path'); diff --git a/examples/app-with-scenes/.config/webpack/webpack.config.ts b/examples/app-with-scenes/.config/webpack/webpack.config.ts index 6ab3c4a6c..e1def4be5 100644 --- a/examples/app-with-scenes/.config/webpack/webpack.config.ts +++ b/examples/app-with-scenes/.config/webpack/webpack.config.ts @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-webpack-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-webpack-config */ import CopyWebpackPlugin from 'copy-webpack-plugin'; diff --git a/examples/app-with-service-account/.config/.eslintrc b/examples/app-with-service-account/.config/.eslintrc index 1486ed2e0..b61476097 100644 --- a/examples/app-with-service-account/.config/.eslintrc +++ b/examples/app-with-service-account/.config/.eslintrc @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-eslint-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-eslint-config */ { "extends": ["@grafana/eslint-config"], diff --git a/examples/app-with-service-account/.config/jest.config.js b/examples/app-with-service-account/.config/jest.config.js index 94489cb2b..09704b4fb 100644 --- a/examples/app-with-service-account/.config/jest.config.js +++ b/examples/app-with-service-account/.config/jest.config.js @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-jest-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-jest-config */ const path = require('path'); diff --git a/examples/app-with-service-account/.config/webpack/webpack.config.ts b/examples/app-with-service-account/.config/webpack/webpack.config.ts index 6ab3c4a6c..e1def4be5 100644 --- a/examples/app-with-service-account/.config/webpack/webpack.config.ts +++ b/examples/app-with-service-account/.config/webpack/webpack.config.ts @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-webpack-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-webpack-config */ import CopyWebpackPlugin from 'copy-webpack-plugin'; diff --git a/examples/app-with-service-account/README.md b/examples/app-with-service-account/README.md index 0d6d6d3fb..89fdb31b3 100644 --- a/examples/app-with-service-account/README.md +++ b/examples/app-with-service-account/README.md @@ -82,5 +82,5 @@ Check the [app.go](./pkg/plugin/app.go) and [resources.go](./pkg/plugin/resource Below you can find source code for existing app plugins and other related documentation. - [Basic app plugin example](https://github.com/grafana/grafana-plugin-examples/tree/master/examples/app-basic#readme) -- [Plugin.json documentation](https://grafana.com/developers/plugin-tools/reference-plugin-json) +- [Plugin.json documentation](https://grafana.com/developers/plugin-tools/reference/plugin-json) - [Sign a plugin](https://grafana.com/developers/plugin-tools/publish-a-plugin/sign-a-plugin) diff --git a/examples/datasource-basic/.config/.eslintrc b/examples/datasource-basic/.config/.eslintrc index 1486ed2e0..b61476097 100644 --- a/examples/datasource-basic/.config/.eslintrc +++ b/examples/datasource-basic/.config/.eslintrc @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-eslint-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-eslint-config */ { "extends": ["@grafana/eslint-config"], diff --git a/examples/datasource-basic/.config/jest.config.js b/examples/datasource-basic/.config/jest.config.js index 94489cb2b..09704b4fb 100644 --- a/examples/datasource-basic/.config/jest.config.js +++ b/examples/datasource-basic/.config/jest.config.js @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-jest-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-jest-config */ const path = require('path'); diff --git a/examples/datasource-basic/.config/webpack/webpack.config.ts b/examples/datasource-basic/.config/webpack/webpack.config.ts index 6ab3c4a6c..c33430378 100644 --- a/examples/datasource-basic/.config/webpack/webpack.config.ts +++ b/examples/datasource-basic/.config/webpack/webpack.config.ts @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-webpack-config + * https://grafana.com/developers/plugin-tools/plugin-tools/get-started/set-up-development-environment#extend-the-webpack-config */ import CopyWebpackPlugin from 'copy-webpack-plugin'; diff --git a/examples/datasource-http-backend/.config/.eslintrc b/examples/datasource-http-backend/.config/.eslintrc index 1486ed2e0..b61476097 100644 --- a/examples/datasource-http-backend/.config/.eslintrc +++ b/examples/datasource-http-backend/.config/.eslintrc @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-eslint-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-eslint-config */ { "extends": ["@grafana/eslint-config"], diff --git a/examples/datasource-http-backend/.config/jest-setup.js b/examples/datasource-http-backend/.config/jest-setup.js index b9f57384a..0687875e8 100644 --- a/examples/datasource-http-backend/.config/jest-setup.js +++ b/examples/datasource-http-backend/.config/jest-setup.js @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-jest-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-jest-config */ import '@testing-library/jest-dom'; diff --git a/examples/datasource-http-backend/.config/jest.config.js b/examples/datasource-http-backend/.config/jest.config.js index 94489cb2b..09704b4fb 100644 --- a/examples/datasource-http-backend/.config/jest.config.js +++ b/examples/datasource-http-backend/.config/jest.config.js @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-jest-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-jest-config */ const path = require('path'); diff --git a/examples/datasource-http-backend/.config/tsconfig.json b/examples/datasource-http-backend/.config/tsconfig.json index 207b28fb5..15e64aca0 100644 --- a/examples/datasource-http-backend/.config/tsconfig.json +++ b/examples/datasource-http-backend/.config/tsconfig.json @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-typescript-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-typescript-config */ { "compilerOptions": { diff --git a/examples/datasource-http-backend/.config/webpack/webpack.config.ts b/examples/datasource-http-backend/.config/webpack/webpack.config.ts index 6ab3c4a6c..e1def4be5 100644 --- a/examples/datasource-http-backend/.config/webpack/webpack.config.ts +++ b/examples/datasource-http-backend/.config/webpack/webpack.config.ts @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-webpack-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-webpack-config */ import CopyWebpackPlugin from 'copy-webpack-plugin'; diff --git a/examples/datasource-http/.config/.eslintrc b/examples/datasource-http/.config/.eslintrc index 1486ed2e0..b61476097 100644 --- a/examples/datasource-http/.config/.eslintrc +++ b/examples/datasource-http/.config/.eslintrc @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-eslint-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-eslint-config */ { "extends": ["@grafana/eslint-config"], diff --git a/examples/datasource-http/.config/jest-setup.js b/examples/datasource-http/.config/jest-setup.js index b9f57384a..0687875e8 100644 --- a/examples/datasource-http/.config/jest-setup.js +++ b/examples/datasource-http/.config/jest-setup.js @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-jest-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-jest-config */ import '@testing-library/jest-dom'; diff --git a/examples/datasource-http/.config/jest.config.js b/examples/datasource-http/.config/jest.config.js index 94489cb2b..09704b4fb 100644 --- a/examples/datasource-http/.config/jest.config.js +++ b/examples/datasource-http/.config/jest.config.js @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-jest-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-jest-config */ const path = require('path'); diff --git a/examples/datasource-http/.config/tsconfig.json b/examples/datasource-http/.config/tsconfig.json index 207b28fb5..15e64aca0 100644 --- a/examples/datasource-http/.config/tsconfig.json +++ b/examples/datasource-http/.config/tsconfig.json @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-typescript-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-typescript-config */ { "compilerOptions": { diff --git a/examples/datasource-http/.config/webpack/webpack.config.ts b/examples/datasource-http/.config/webpack/webpack.config.ts index 6ab3c4a6c..e1def4be5 100644 --- a/examples/datasource-http/.config/webpack/webpack.config.ts +++ b/examples/datasource-http/.config/webpack/webpack.config.ts @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-webpack-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-webpack-config */ import CopyWebpackPlugin from 'copy-webpack-plugin'; diff --git a/examples/datasource-logs/.config/.eslintrc b/examples/datasource-logs/.config/.eslintrc index 1486ed2e0..b61476097 100644 --- a/examples/datasource-logs/.config/.eslintrc +++ b/examples/datasource-logs/.config/.eslintrc @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-eslint-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-eslint-config */ { "extends": ["@grafana/eslint-config"], diff --git a/examples/datasource-logs/.config/jest-setup.js b/examples/datasource-logs/.config/jest-setup.js index b9f57384a..0687875e8 100644 --- a/examples/datasource-logs/.config/jest-setup.js +++ b/examples/datasource-logs/.config/jest-setup.js @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-jest-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-jest-config */ import '@testing-library/jest-dom'; diff --git a/examples/datasource-logs/.config/jest.config.js b/examples/datasource-logs/.config/jest.config.js index 94489cb2b..09704b4fb 100644 --- a/examples/datasource-logs/.config/jest.config.js +++ b/examples/datasource-logs/.config/jest.config.js @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-jest-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-jest-config */ const path = require('path'); diff --git a/examples/datasource-logs/.config/tsconfig.json b/examples/datasource-logs/.config/tsconfig.json index 207b28fb5..15e64aca0 100644 --- a/examples/datasource-logs/.config/tsconfig.json +++ b/examples/datasource-logs/.config/tsconfig.json @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-typescript-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-typescript-config */ { "compilerOptions": { diff --git a/examples/datasource-logs/.config/webpack/webpack.config.ts b/examples/datasource-logs/.config/webpack/webpack.config.ts index 6ab3c4a6c..e1def4be5 100644 --- a/examples/datasource-logs/.config/webpack/webpack.config.ts +++ b/examples/datasource-logs/.config/webpack/webpack.config.ts @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-webpack-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-webpack-config */ import CopyWebpackPlugin from 'copy-webpack-plugin'; diff --git a/examples/datasource-streaming-backend-websocket/streaming-backend-websocket-plugin/.config/.eslintrc b/examples/datasource-streaming-backend-websocket/streaming-backend-websocket-plugin/.config/.eslintrc index 1486ed2e0..b61476097 100644 --- a/examples/datasource-streaming-backend-websocket/streaming-backend-websocket-plugin/.config/.eslintrc +++ b/examples/datasource-streaming-backend-websocket/streaming-backend-websocket-plugin/.config/.eslintrc @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-eslint-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-eslint-config */ { "extends": ["@grafana/eslint-config"], diff --git a/examples/datasource-streaming-backend-websocket/streaming-backend-websocket-plugin/.config/jest-setup.js b/examples/datasource-streaming-backend-websocket/streaming-backend-websocket-plugin/.config/jest-setup.js index b9f57384a..0687875e8 100644 --- a/examples/datasource-streaming-backend-websocket/streaming-backend-websocket-plugin/.config/jest-setup.js +++ b/examples/datasource-streaming-backend-websocket/streaming-backend-websocket-plugin/.config/jest-setup.js @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-jest-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-jest-config */ import '@testing-library/jest-dom'; diff --git a/examples/datasource-streaming-backend-websocket/streaming-backend-websocket-plugin/.config/jest.config.js b/examples/datasource-streaming-backend-websocket/streaming-backend-websocket-plugin/.config/jest.config.js index 94489cb2b..09704b4fb 100644 --- a/examples/datasource-streaming-backend-websocket/streaming-backend-websocket-plugin/.config/jest.config.js +++ b/examples/datasource-streaming-backend-websocket/streaming-backend-websocket-plugin/.config/jest.config.js @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-jest-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-jest-config */ const path = require('path'); diff --git a/examples/datasource-streaming-backend-websocket/streaming-backend-websocket-plugin/.config/tsconfig.json b/examples/datasource-streaming-backend-websocket/streaming-backend-websocket-plugin/.config/tsconfig.json index 207b28fb5..15e64aca0 100644 --- a/examples/datasource-streaming-backend-websocket/streaming-backend-websocket-plugin/.config/tsconfig.json +++ b/examples/datasource-streaming-backend-websocket/streaming-backend-websocket-plugin/.config/tsconfig.json @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-typescript-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-typescript-config */ { "compilerOptions": { diff --git a/examples/datasource-streaming-backend-websocket/streaming-backend-websocket-plugin/.config/webpack/webpack.config.ts b/examples/datasource-streaming-backend-websocket/streaming-backend-websocket-plugin/.config/webpack/webpack.config.ts index 6ab3c4a6c..e1def4be5 100644 --- a/examples/datasource-streaming-backend-websocket/streaming-backend-websocket-plugin/.config/webpack/webpack.config.ts +++ b/examples/datasource-streaming-backend-websocket/streaming-backend-websocket-plugin/.config/webpack/webpack.config.ts @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-webpack-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-webpack-config */ import CopyWebpackPlugin from 'copy-webpack-plugin'; diff --git a/examples/datasource-streaming-websocket/streaming-websocket-plugin/.config/.eslintrc b/examples/datasource-streaming-websocket/streaming-websocket-plugin/.config/.eslintrc index 1486ed2e0..b61476097 100644 --- a/examples/datasource-streaming-websocket/streaming-websocket-plugin/.config/.eslintrc +++ b/examples/datasource-streaming-websocket/streaming-websocket-plugin/.config/.eslintrc @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-eslint-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-eslint-config */ { "extends": ["@grafana/eslint-config"], diff --git a/examples/datasource-streaming-websocket/streaming-websocket-plugin/.config/jest-setup.js b/examples/datasource-streaming-websocket/streaming-websocket-plugin/.config/jest-setup.js index b9f57384a..0687875e8 100644 --- a/examples/datasource-streaming-websocket/streaming-websocket-plugin/.config/jest-setup.js +++ b/examples/datasource-streaming-websocket/streaming-websocket-plugin/.config/jest-setup.js @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-jest-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-jest-config */ import '@testing-library/jest-dom'; diff --git a/examples/datasource-streaming-websocket/streaming-websocket-plugin/.config/jest.config.js b/examples/datasource-streaming-websocket/streaming-websocket-plugin/.config/jest.config.js index 94489cb2b..09704b4fb 100644 --- a/examples/datasource-streaming-websocket/streaming-websocket-plugin/.config/jest.config.js +++ b/examples/datasource-streaming-websocket/streaming-websocket-plugin/.config/jest.config.js @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-jest-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-jest-config */ const path = require('path'); diff --git a/examples/datasource-streaming-websocket/streaming-websocket-plugin/.config/tsconfig.json b/examples/datasource-streaming-websocket/streaming-websocket-plugin/.config/tsconfig.json index 207b28fb5..15e64aca0 100644 --- a/examples/datasource-streaming-websocket/streaming-websocket-plugin/.config/tsconfig.json +++ b/examples/datasource-streaming-websocket/streaming-websocket-plugin/.config/tsconfig.json @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-typescript-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-typescript-config */ { "compilerOptions": { diff --git a/examples/datasource-streaming-websocket/streaming-websocket-plugin/.config/webpack/webpack.config.ts b/examples/datasource-streaming-websocket/streaming-websocket-plugin/.config/webpack/webpack.config.ts index 6ab3c4a6c..e1def4be5 100644 --- a/examples/datasource-streaming-websocket/streaming-websocket-plugin/.config/webpack/webpack.config.ts +++ b/examples/datasource-streaming-websocket/streaming-websocket-plugin/.config/webpack/webpack.config.ts @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-webpack-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-webpack-config */ import CopyWebpackPlugin from 'copy-webpack-plugin'; diff --git a/examples/panel-basic/.config/.eslintrc b/examples/panel-basic/.config/.eslintrc index 1486ed2e0..b61476097 100644 --- a/examples/panel-basic/.config/.eslintrc +++ b/examples/panel-basic/.config/.eslintrc @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-eslint-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-eslint-config */ { "extends": ["@grafana/eslint-config"], diff --git a/examples/panel-basic/.config/jest-setup.js b/examples/panel-basic/.config/jest-setup.js index b9f57384a..0687875e8 100644 --- a/examples/panel-basic/.config/jest-setup.js +++ b/examples/panel-basic/.config/jest-setup.js @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-jest-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-jest-config */ import '@testing-library/jest-dom'; diff --git a/examples/panel-basic/.config/jest.config.js b/examples/panel-basic/.config/jest.config.js index 94489cb2b..09704b4fb 100644 --- a/examples/panel-basic/.config/jest.config.js +++ b/examples/panel-basic/.config/jest.config.js @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-jest-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-jest-config */ const path = require('path'); diff --git a/examples/panel-basic/.config/tsconfig.json b/examples/panel-basic/.config/tsconfig.json index 207b28fb5..15e64aca0 100644 --- a/examples/panel-basic/.config/tsconfig.json +++ b/examples/panel-basic/.config/tsconfig.json @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-typescript-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-typescript-config */ { "compilerOptions": { diff --git a/examples/panel-basic/.config/webpack/webpack.config.ts b/examples/panel-basic/.config/webpack/webpack.config.ts index 6ab3c4a6c..e1def4be5 100644 --- a/examples/panel-basic/.config/webpack/webpack.config.ts +++ b/examples/panel-basic/.config/webpack/webpack.config.ts @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-webpack-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-webpack-config */ import CopyWebpackPlugin from 'copy-webpack-plugin'; diff --git a/examples/panel-datalinks/.config/.eslintrc b/examples/panel-datalinks/.config/.eslintrc index 1486ed2e0..b61476097 100644 --- a/examples/panel-datalinks/.config/.eslintrc +++ b/examples/panel-datalinks/.config/.eslintrc @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-eslint-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-eslint-config */ { "extends": ["@grafana/eslint-config"], diff --git a/examples/panel-datalinks/.config/jest-setup.js b/examples/panel-datalinks/.config/jest-setup.js index b9f57384a..dadee6e34 100644 --- a/examples/panel-datalinks/.config/jest-setup.js +++ b/examples/panel-datalinks/.config/jest-setup.js @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-jest-config + * https://grafana.com/developers/plugin-tools/plugin-tools/get-started/set-up-development-environment#extend-the-jest-config */ import '@testing-library/jest-dom'; diff --git a/examples/panel-datalinks/.config/jest.config.js b/examples/panel-datalinks/.config/jest.config.js index 94489cb2b..d3a6bf83e 100644 --- a/examples/panel-datalinks/.config/jest.config.js +++ b/examples/panel-datalinks/.config/jest.config.js @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-jest-config + * https://grafana.com/developers/plugin-tools/plugin-tools/get-started/set-up-development-environment#extend-the-jest-config */ const path = require('path'); diff --git a/examples/panel-datalinks/.config/tsconfig.json b/examples/panel-datalinks/.config/tsconfig.json index 207b28fb5..15e64aca0 100644 --- a/examples/panel-datalinks/.config/tsconfig.json +++ b/examples/panel-datalinks/.config/tsconfig.json @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-typescript-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-typescript-config */ { "compilerOptions": { diff --git a/examples/panel-datalinks/.config/webpack/webpack.config.ts b/examples/panel-datalinks/.config/webpack/webpack.config.ts index 6ab3c4a6c..e1def4be5 100644 --- a/examples/panel-datalinks/.config/webpack/webpack.config.ts +++ b/examples/panel-datalinks/.config/webpack/webpack.config.ts @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-webpack-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-webpack-config */ import CopyWebpackPlugin from 'copy-webpack-plugin'; diff --git a/examples/panel-datalinks/README.md b/examples/panel-datalinks/README.md index 9a09db2cb..984702233 100644 --- a/examples/panel-datalinks/README.md +++ b/examples/panel-datalinks/README.md @@ -71,5 +71,5 @@ Use panel plugins when you want to do things like visualize data returned by dat Below you can find source code for existing app plugins and other related documentation. - [Basic panel plugin example](https://github.com/grafana/grafana-plugin-examples/tree/master/examples/panel-basic#readme) -- [Plugin.json documentation](https://grafana.com/developers/plugin-tools/reference-plugin-json) +- [Plugin.json documentation](https://grafana.com/developers/plugin-tools/reference/plugin-json) - [Sign a plugin](https://grafana.com/developers/plugin-tools/publish-a-plugin/sign-a-plugin/) diff --git a/examples/panel-frame-select/.config/.eslintrc b/examples/panel-frame-select/.config/.eslintrc index 1486ed2e0..b61476097 100644 --- a/examples/panel-frame-select/.config/.eslintrc +++ b/examples/panel-frame-select/.config/.eslintrc @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-eslint-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-eslint-config */ { "extends": ["@grafana/eslint-config"], diff --git a/examples/panel-frame-select/.config/jest-setup.js b/examples/panel-frame-select/.config/jest-setup.js index b9f57384a..0687875e8 100644 --- a/examples/panel-frame-select/.config/jest-setup.js +++ b/examples/panel-frame-select/.config/jest-setup.js @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-jest-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-jest-config */ import '@testing-library/jest-dom'; diff --git a/examples/panel-frame-select/.config/jest.config.js b/examples/panel-frame-select/.config/jest.config.js index 94489cb2b..09704b4fb 100644 --- a/examples/panel-frame-select/.config/jest.config.js +++ b/examples/panel-frame-select/.config/jest.config.js @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-jest-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-jest-config */ const path = require('path'); diff --git a/examples/panel-frame-select/.config/tsconfig.json b/examples/panel-frame-select/.config/tsconfig.json index 207b28fb5..15e64aca0 100644 --- a/examples/panel-frame-select/.config/tsconfig.json +++ b/examples/panel-frame-select/.config/tsconfig.json @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-typescript-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-typescript-config */ { "compilerOptions": { diff --git a/examples/panel-frame-select/.config/webpack/webpack.config.ts b/examples/panel-frame-select/.config/webpack/webpack.config.ts index 6ab3c4a6c..e1def4be5 100644 --- a/examples/panel-frame-select/.config/webpack/webpack.config.ts +++ b/examples/panel-frame-select/.config/webpack/webpack.config.ts @@ -2,7 +2,7 @@ * ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️ * * In order to extend the configuration follow the steps in - * https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-webpack-config + * https://grafana.com/developers/plugin-tools/get-started/set-up-development-environment#extend-the-webpack-config */ import CopyWebpackPlugin from 'copy-webpack-plugin';