From b38cdbdb07192c3da8a24609205628f30ad15f1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=CC=81bor=20Farkas?= Date: Tue, 14 May 2024 13:07:09 +0200 Subject: [PATCH] added maintenance mode warning, and prepared for new release --- CHANGELOG.md | 4 ++++ README.md | 3 +++ docs/sources/_index.md | 10 +++++++--- package.json | 2 +- src/README.md | 2 ++ 5 files changed, 17 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e6d9455..fa50334 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v1.3.15 - 2024-05-14 + +- ⚙️ **Chore**: Updated documentation + ## v1.3.14 - 2024-04-15 - ⚙️ **Chore**: Update dependencies diff --git a/README.md b/README.md index 08085bd..9594aa7 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,8 @@ # JSON API data source for Grafana +> [!CAUTION] +> This plugin is now in maintenance mode, no new features will be added. We recommend using the [Infinity data source plugin](https://grafana.com/grafana/plugins/yesoreyeram-infinity-datasource/) instead + The Grafana JSON Datasource plugin empowers you to seamlessly integrate JSON data into Grafana. JSON is a versatile and widely used data format, and with this plugin, you can easily transform your JSON data into meaningful visualizations within Grafana dashboards. ## Documentation diff --git a/docs/sources/_index.md b/docs/sources/_index.md index 2b2a0f0..ac464ff 100644 --- a/docs/sources/_index.md +++ b/docs/sources/_index.md @@ -13,12 +13,16 @@ labels: weight: 100 --- +{{< admonition type="warning" >}} +This plugin is now in maintenance mode, no new features will be added. We recommend using the [Infinity data source plugin](https://grafana.com/grafana/plugins/yesoreyeram-infinity-datasource/) instead +{{< /admonition >}} + JSON API is an open source data source plugin for Grafana that lets you visualize data from any URL that returns JSON, such as REST APIs or static file servers. ## Known Limitations -* Since the plugin doesn't keep a record of previous queries, each query needs to contain the complete data set you want to visualize. If you'd like to visualize how the data changes over time, you're probably better off storing the data in a database. +- Since the plugin doesn't keep a record of previous queries, each query needs to contain the complete data set you want to visualize. If you'd like to visualize how the data changes over time, you're probably better off storing the data in a database. -* This plugin doesn't support backend operations such as alerting, recorded queries, public dashboards, enterprise query caching, etc. If you prefer to use one of those options, use the [Grafana Infinity Datasource plugin](https://grafana.com/grafana/plugins/yesoreyeram-infinity-datasource/) instead. +- This plugin doesn't support backend operations such as alerting, recorded queries, public dashboards, enterprise query caching, etc. If you prefer to use one of those options, use the [Grafana Infinity Datasource plugin](https://grafana.com/grafana/plugins/yesoreyeram-infinity-datasource/) instead. -* This plugins doesn't support authentication methods such as OAuth2, digest authentication, jwt authentication. If you prefer to use one of those options, use the [Grafana Infinity Datasource plugin](https://grafana.com/grafana/plugins/yesoreyeram-infinity-datasource/) instead. +- This plugins doesn't support authentication methods such as OAuth2, digest authentication, jwt authentication. If you prefer to use one of those options, use the [Grafana Infinity Datasource plugin](https://grafana.com/grafana/plugins/yesoreyeram-infinity-datasource/) instead. diff --git a/package.json b/package.json index d83e26c..f5a0549 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "grafana-json-datasource", - "version": "1.3.14", + "version": "1.3.15", "description": "A data source plugin for loading JSON APIs into Grafana", "keywords": [ "grafana", diff --git a/src/README.md b/src/README.md index 5eb4172..d292d46 100644 --- a/src/README.md +++ b/src/README.md @@ -1,5 +1,7 @@ # JSON API data source for Grafana +## (NOTE: this plugin is now in maintenance mode, no new features will be added. We recommend using the [Infinity data source plugin](https://grafana.com/grafana/plugins/yesoreyeram-infinity-datasource/) instead) + The Grafana JSON Datasource plugin empowers you to seamlessly integrate JSON data into Grafana. JSON is a versatile and widely used data format, and with this plugin, you can easily transform your JSON data into meaningful visualizations within Grafana dashboards. ## Documentation