Merge pull request #222519 from azahi/grafana-redis-plugins

grafanaPlugins.redis*: init
This commit is contained in:
Luke Granger-Brown 2023-03-23 19:24:13 +00:00 committed by GitHub
commit c0bbc8c1b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 42 additions and 0 deletions

View file

@ -10,4 +10,7 @@
grafana-piechart-panel = callPackage ./grafana-piechart-panel { };
grafana-polystat-panel = callPackage ./grafana-polystat-panel { };
grafana-worldmap-panel = callPackage ./grafana-worldmap-panel { };
redis-app = callPackage ./redis-app { };
redis-datasource = callPackage ./redis-datasource { };
redis-explorer-app = callPackage ./redis-explorer-app { };
}

View file

@ -0,0 +1,13 @@
{ grafanaPlugin, lib }:
grafanaPlugin rec {
pname = "redis-app";
version = "2.2.1";
zipHash = "sha256-1ZzJaGhlM6CaTecj69aqJ9fqN7wYSsiDCMTRVkZJUb0=";
meta = with lib; {
description = "Redis Application plugin for Grafana";
license = licenses.asl20;
maintainers = with maintainers; [ azahi ];
platforms = platforms.unix;
};
}

View file

@ -0,0 +1,13 @@
{ grafanaPlugin, lib }:
grafanaPlugin rec {
pname = "redis-datasource";
version = "2.1.1";
zipHash = "sha256-Qhdh2UYOq/El08jTheKRa3f971QKeVmMWiA6rnXNUi4=";
meta = with lib; {
description = "Redis Data Source for Grafana";
license = licenses.asl20;
maintainers = with maintainers; [ azahi ];
platforms = platforms.unix;
};
}

View file

@ -0,0 +1,13 @@
{ grafanaPlugin, lib }:
grafanaPlugin rec {
pname = "redis-explorer-app";
version = "2.1.1";
zipHash = "sha256-t5L9XURNcswDbZWSmehs/JYU7NoEwhX1If7ghbi509g=";
meta = with lib; {
description = "Redis Explorer plugin for Grafana";
license = licenses.asl20;
maintainers = with maintainers; [ azahi ];
platforms = platforms.unix;
};
}