Skip to content

Commit 4359ad9

Browse files
authored
Add screenshots to plugin.json and update README (#28)
* Update screenshots to raw images * Add Screenshots to plugin.json and move images * CHANGELOG added to display on the Plugin page
1 parent f8955e1 commit 4359ad9

File tree

7 files changed

+42
-7
lines changed

7 files changed

+42
-7
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Change Log
2+
3+
## v1.1.1
4+
5+
- Screenshots added to plugin.json and updated in the README
6+
- CHANGELOG added to display on the Plugin page
7+
8+
## v1.1.0
9+
10+
- Updated to Grafana 7.1.0 and the latest version of Radix [#27](https://github.com/RedisTimeSeries/grafana-redis-datasource/pull/27)
11+
- Add dashboard as a part of datasource [#25](https://github.com/RedisTimeSeries/grafana-redis-datasource/pull/25)
12+
- Add Field config units to the response [#26](https://github.com/RedisTimeSeries/grafana-redis-datasource/pull/26)
13+
14+
## v1.0.0
15+
16+
- Initial release based on Grafana 7.0.5.
17+
- Allows configuring password, TLS, and advanced settings.
18+
- Supports Redis commands: CLIENT LIST, GET, HGET, HGETALL, HKEYS, HLEN, INFO, LLEN, SCARD, SLOWLOG GET, SMEMBERS, TTL, TYPE, XLEN.
19+
- Supports RedisTimeSeries commands: TS.MRANGE, TS.RANGE.
20+
- Provides Redis monitoring dashboard.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Grafana Redis Datasource
22

3-
![Dashboard](https://github.com/RedisTimeSeries/grafana-redis-datasource/blob/master/images/redis-dashboard.png)
3+
![Dashboard](https://raw.githubusercontent.com/RedisTimeSeries/grafana-redis-datasource/master/src/img/redis-dashboard.png)
44

55
[![Grafana 7](https://img.shields.io/badge/Grafana-7-red)](https://www.grafana.com)
66
[![Radix](https://img.shields.io/badge/Radix-powered-blue)](https://github.com/mediocregopher/radix)
@@ -89,7 +89,7 @@ Open Grafana in your browser [http://localhost:3000](http://localhost:3000) and
8989

9090
You can add as many datasources as you want to support multiple Redis databases.
9191

92-
![Datasource](https://github.com/RedisTimeSeries/grafana-redis-datasource/blob/master/images/datasource.png)
92+
![Datasource](https://raw.githubusercontent.com/RedisTimeSeries/grafana-redis-datasource/master/src/img/datasource.png)
9393

9494
There are certain settings that can be configured based on your own setup:
9595

@@ -123,13 +123,13 @@ If Redis is running as Docker container on MacOS, please update host to `host.do
123123

124124
Datasource supports many Redis commands using custom components and provide unified interface to query any command.
125125

126-
![Query](https://github.com/RedisTimeSeries/grafana-redis-datasource/blob/master/images/query.png)
126+
![Query](https://raw.githubusercontent.com/RedisTimeSeries/grafana-redis-datasource/master/src/img/query.png)
127127

128128
## Template variables
129129

130130
Template variables can query any command and use other variables as parameters.
131131

132-
![Variables](https://github.com/RedisTimeSeries/grafana-redis-datasource/blob/master/images/variables.png)
132+
![Variables](https://raw.githubusercontent.com/RedisTimeSeries/grafana-redis-datasource/master/src/img/variables.png)
133133

134134
## Feedback
135135

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/plugin.json

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@
66
"backend": true,
77
"alerting": true,
88
"executable": "redis-datasource",
9-
109
"includes": [{ "type": "dashboard", "name": "Redis Status", "path": "dashboards/redis.json" }],
11-
1210
"info": {
1311
"description": "Grafana Redis Datasource",
1412
"author": {
@@ -30,7 +28,24 @@
3028
"url": "https://github.com/RedisTimeSeries/grafana-redis-datasource/blob/master/LICENSE"
3129
}
3230
],
33-
"screenshots": [],
31+
"screenshots": [
32+
{
33+
"name": "Dashboard",
34+
"path": "img/redis-dashboard.png"
35+
},
36+
{
37+
"name": "Datasource",
38+
"path": "img/datasource.png"
39+
},
40+
{
41+
"name": "Query",
42+
"path": "img/query.png"
43+
},
44+
{
45+
"name": "Variables",
46+
"path": "img/variables.png"
47+
}
48+
],
3449
"version": "%VERSION%",
3550
"updated": "%TODAY%"
3651
},

0 commit comments

Comments
 (0)