Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## 2.0.0 (2021-10-11)

### Features / Enhancements

- Plugins statistics updated to October, 10 2021
- Update screenshots and dashboards for Grafana 8.2
- Added demo on https://demo.volkovlabs.io

## 1.5.0 (2021-07-06)

### Features / Enhancements
Expand Down
15 changes: 11 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,24 @@

![Stats](https://raw.githubusercontent.com/RedisGrafana/grafana-plugin-stats/master/images/redis-datasource-stats.png)

[![Grafana 7](https://img.shields.io/badge/Grafana-7-orange)](https://www.grafana.com)
[![Grafana 8](https://img.shields.io/badge/Grafana-8-orange)](https://www.grafana.com)
[![Redis Data Source](https://img.shields.io/badge/dynamic/json?color=blue&label=Redis%20Data%20Source&query=%24.version&url=https%3A%2F%2Fgrafana.com%2Fapi%2Fplugins%2Fredis-datasource)](https://grafana.com/grafana/plugins/redis-datasource)
[![Downloaded](https://img.shields.io/badge/dynamic/json?color=blue&label=Downloads&query=%24.downloads&url=https%3A%2F%2Fgrafana.com%2Fapi%2Fplugins%2Fredis-datasource)](https://grafana.com/grafana/plugins/redis-datasource)

## Introduction

This project collects plugins statistics from Grafana repository as [RedisTimeSeries](https://oss.redislabs.com/redistimeseries/) and visualizes collected data using [Redis plugins for Grafana](https://redisgrafana.github.io/).
This project collects plugins statistics from Grafana repository as [RedisTimeSeries](https://oss.redis.com/redistimeseries/) and visualizes collected data using [Redis plugins for Grafana](https://redisgrafana.github.io/).

![Diagram](https://raw.githubusercontent.com/RedisGrafana/grafana-plugin-stats/master/images/redis-grafana-stats.png)

Read the full story on Redis Labs blog [How to Use the New Redis Data Source for Grafana Plugin](https://redislabs.com/blog/how-to-use-the-new-redis-data-source-for-grafana-plug-in/).
Read the full story on Redis Labs blog [How to Use the New Redis Data Source for Grafana Plugin](https://redis.com/blog/how-to-use-the-new-redis-data-source-for-grafana-plug-in/).

## Demo

Demo is available on [demo.volkovlabs.io](https://demo.volkovlabs.io):

- [Redis Overview dashboard](https://demo.volkovlabs.io/d/TgibHBv7z/redis-overview?orgId=1&refresh=1h)
- [Grafana Plugins dashboard](https://demo.volkovlabs.io/d/C1NCSr3Gk/grafana-plugins?orgId=1)

## Requirements

Expand All @@ -21,7 +28,7 @@ Read the full story on Redis Labs blog [How to Use the New Redis Data Source for

## Collect statistics

Collect and store statistics for all Grafana plugins using [RedisTimeSeries](https://oss.redislabs.com/redistimeseries/).
Collect and store statistics for all Grafana plugins using [RedisTimeSeries](https://oss.redis.com/redistimeseries/).

```bash
node src/global-stats.ts
Expand Down
Binary file modified data/dump.rdb
Binary file not shown.
Binary file modified images/grafana-plugins.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/redis-datasource-stats.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/redis-plugins.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"author": "Mikhail Volkov",
"dependencies": {
"axios": "^0.21.1",
"ioredis": "^4.27.6"
"axios": "^0.22.0",
"ioredis": "^4.27.10"
},
"description": "How many times Redis Data Source for Grafana was downloaded?",
"devDependencies": {
"@types/node": "^16.0.0"
"@types/node": "^16.10.3"
},
"license": "Apache-2.0",
"name": "grafana-plugin-stats",
Expand All @@ -20,5 +20,5 @@
"stop:master": "docker-compose -f docker-compose/master.yml down",
"upgrade": "yarn upgrade --latest"
},
"version": "1.5.0"
"version": "2.0.0"
}
Loading