├── .dockerignore ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── a_question.md │ ├── bug_report.md │ ├── enhancement.md │ └── task.md └── workflows │ ├── ci.yml │ ├── integration.yml │ └── main.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.js ├── BUILD.md ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── Magefile.go ├── README.md ├── config └── jest-setup.ts ├── data └── dump.rdb ├── docker-compose.yml ├── docker-compose ├── cluster.yml ├── cluster │ ├── Dockerfile │ ├── cluster_tests.sh │ ├── redis.conf │ ├── startup.sh │ └── startup_cluster.sh ├── dev.yml ├── master.yml └── test.yml ├── go.mod ├── go.sum ├── jest.config.js ├── package.json ├── pkg ├── data-frame.go ├── data-frame_test.go ├── datasource.go ├── datasource_test.go ├── main.go ├── models │ ├── custom.go │ ├── redis-gears.go │ ├── redis-graph.go │ ├── redis-json.go │ ├── redis-search.go │ ├── redis-time-series.go │ └── redis.go ├── query.go ├── query_test.go ├── redis-client.go ├── redis-client_test.go ├── redis-cluster.go ├── redis-cluster_integration_test.go ├── redis-cluster_test.go ├── redis-custom.go ├── redis-custom_test.go ├── redis-gears.go ├── redis-gears_integration_test.go ├── redis-gears_test.go ├── redis-graph.go ├── redis-graph_integration_test.go ├── redis-graph_test.go ├── redis-hash.go ├── redis-hash_test.go ├── redis-info.go ├── redis-info_test.go ├── redis-json.go ├── redis-json_test.go ├── redis-search.go ├── redis-search_test.go ├── redis-set.go ├── redis-set_test.go ├── redis-stream.go ├── redis-stream_integration_test.go ├── redis-stream_test.go ├── redis-time-series.go ├── redis-time-series_integration_test.go ├── redis-time-series_test.go ├── redis-tmscan.go ├── redis-tmscan_integration_test.go ├── redis-tmscan_test.go ├── redis-zset.go ├── redis-zset_test.go ├── testing-utilities_integration_test.go ├── testing-utilities_test.go └── types.go ├── provisioning ├── dashboards │ ├── data-types.json │ └── default.yaml └── datasources │ └── redis.yaml ├── src ├── components │ ├── ConfigEditor │ │ ├── ConfigEditor.test.tsx │ │ ├── ConfigEditor.tsx │ │ └── index.ts │ ├── QueryEditor │ │ ├── QueryEditor.test.tsx │ │ ├── QueryEditor.tsx │ │ └── index.ts │ └── index.ts ├── constants.ts ├── dashboards │ ├── redis-streaming-v8.json │ └── redis.json ├── datasource │ ├── datasource.test.ts │ ├── datasource.ts │ └── index.ts ├── img │ ├── datasource.png │ ├── grafana-marketplace.png │ ├── logo.svg │ ├── query.png │ ├── redis-dashboard.png │ ├── redis-streaming.png │ └── variables.png ├── module.test.ts ├── module.ts ├── plugin.json ├── redis │ ├── command.ts │ ├── fieldValuesContainer.ts │ ├── gears.ts │ ├── graph.ts │ ├── index.ts │ ├── info.ts │ ├── json.ts │ ├── query.ts │ ├── redis.ts │ ├── search.ts │ ├── time-series.ts │ └── types.ts ├── tests │ └── utils.ts ├── time-series │ ├── index.ts │ ├── time-series.test.ts │ └── time-series.ts └── types.ts ├── tsconfig.json └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/a_question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/.github/ISSUE_TEMPLATE/a_question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/.github/ISSUE_TEMPLATE/enhancement.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/.github/ISSUE_TEMPLATE/task.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/.github/workflows/integration.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/BUILD.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/LICENSE -------------------------------------------------------------------------------- /Magefile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/Magefile.go -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/README.md -------------------------------------------------------------------------------- /config/jest-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/config/jest-setup.ts -------------------------------------------------------------------------------- /data/dump.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/data/dump.rdb -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker-compose/cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/docker-compose/cluster.yml -------------------------------------------------------------------------------- /docker-compose/cluster/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/docker-compose/cluster/Dockerfile -------------------------------------------------------------------------------- /docker-compose/cluster/cluster_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/docker-compose/cluster/cluster_tests.sh -------------------------------------------------------------------------------- /docker-compose/cluster/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/docker-compose/cluster/redis.conf -------------------------------------------------------------------------------- /docker-compose/cluster/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/docker-compose/cluster/startup.sh -------------------------------------------------------------------------------- /docker-compose/cluster/startup_cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/docker-compose/cluster/startup_cluster.sh -------------------------------------------------------------------------------- /docker-compose/dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/docker-compose/dev.yml -------------------------------------------------------------------------------- /docker-compose/master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/docker-compose/master.yml -------------------------------------------------------------------------------- /docker-compose/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/docker-compose/test.yml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/go.sum -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/package.json -------------------------------------------------------------------------------- /pkg/data-frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/data-frame.go -------------------------------------------------------------------------------- /pkg/data-frame_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/data-frame_test.go -------------------------------------------------------------------------------- /pkg/datasource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/datasource.go -------------------------------------------------------------------------------- /pkg/datasource_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/datasource_test.go -------------------------------------------------------------------------------- /pkg/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/main.go -------------------------------------------------------------------------------- /pkg/models/custom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/models/custom.go -------------------------------------------------------------------------------- /pkg/models/redis-gears.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/models/redis-gears.go -------------------------------------------------------------------------------- /pkg/models/redis-graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/models/redis-graph.go -------------------------------------------------------------------------------- /pkg/models/redis-json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/models/redis-json.go -------------------------------------------------------------------------------- /pkg/models/redis-search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/models/redis-search.go -------------------------------------------------------------------------------- /pkg/models/redis-time-series.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/models/redis-time-series.go -------------------------------------------------------------------------------- /pkg/models/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/models/redis.go -------------------------------------------------------------------------------- /pkg/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/query.go -------------------------------------------------------------------------------- /pkg/query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/query_test.go -------------------------------------------------------------------------------- /pkg/redis-client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/redis-client.go -------------------------------------------------------------------------------- /pkg/redis-client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/redis-client_test.go -------------------------------------------------------------------------------- /pkg/redis-cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/redis-cluster.go -------------------------------------------------------------------------------- /pkg/redis-cluster_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/redis-cluster_integration_test.go -------------------------------------------------------------------------------- /pkg/redis-cluster_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/redis-cluster_test.go -------------------------------------------------------------------------------- /pkg/redis-custom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/redis-custom.go -------------------------------------------------------------------------------- /pkg/redis-custom_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/redis-custom_test.go -------------------------------------------------------------------------------- /pkg/redis-gears.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/redis-gears.go -------------------------------------------------------------------------------- /pkg/redis-gears_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/redis-gears_integration_test.go -------------------------------------------------------------------------------- /pkg/redis-gears_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/redis-gears_test.go -------------------------------------------------------------------------------- /pkg/redis-graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/redis-graph.go -------------------------------------------------------------------------------- /pkg/redis-graph_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/redis-graph_integration_test.go -------------------------------------------------------------------------------- /pkg/redis-graph_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/redis-graph_test.go -------------------------------------------------------------------------------- /pkg/redis-hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/redis-hash.go -------------------------------------------------------------------------------- /pkg/redis-hash_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/redis-hash_test.go -------------------------------------------------------------------------------- /pkg/redis-info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/redis-info.go -------------------------------------------------------------------------------- /pkg/redis-info_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/redis-info_test.go -------------------------------------------------------------------------------- /pkg/redis-json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/redis-json.go -------------------------------------------------------------------------------- /pkg/redis-json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/redis-json_test.go -------------------------------------------------------------------------------- /pkg/redis-search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/redis-search.go -------------------------------------------------------------------------------- /pkg/redis-search_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/redis-search_test.go -------------------------------------------------------------------------------- /pkg/redis-set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/redis-set.go -------------------------------------------------------------------------------- /pkg/redis-set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/redis-set_test.go -------------------------------------------------------------------------------- /pkg/redis-stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/redis-stream.go -------------------------------------------------------------------------------- /pkg/redis-stream_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/redis-stream_integration_test.go -------------------------------------------------------------------------------- /pkg/redis-stream_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/redis-stream_test.go -------------------------------------------------------------------------------- /pkg/redis-time-series.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/redis-time-series.go -------------------------------------------------------------------------------- /pkg/redis-time-series_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/redis-time-series_integration_test.go -------------------------------------------------------------------------------- /pkg/redis-time-series_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/redis-time-series_test.go -------------------------------------------------------------------------------- /pkg/redis-tmscan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/redis-tmscan.go -------------------------------------------------------------------------------- /pkg/redis-tmscan_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/redis-tmscan_integration_test.go -------------------------------------------------------------------------------- /pkg/redis-tmscan_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/redis-tmscan_test.go -------------------------------------------------------------------------------- /pkg/redis-zset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/redis-zset.go -------------------------------------------------------------------------------- /pkg/redis-zset_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/redis-zset_test.go -------------------------------------------------------------------------------- /pkg/testing-utilities_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/testing-utilities_integration_test.go -------------------------------------------------------------------------------- /pkg/testing-utilities_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/testing-utilities_test.go -------------------------------------------------------------------------------- /pkg/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/pkg/types.go -------------------------------------------------------------------------------- /provisioning/dashboards/data-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/provisioning/dashboards/data-types.json -------------------------------------------------------------------------------- /provisioning/dashboards/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/provisioning/dashboards/default.yaml -------------------------------------------------------------------------------- /provisioning/datasources/redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/provisioning/datasources/redis.yaml -------------------------------------------------------------------------------- /src/components/ConfigEditor/ConfigEditor.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/components/ConfigEditor/ConfigEditor.test.tsx -------------------------------------------------------------------------------- /src/components/ConfigEditor/ConfigEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/components/ConfigEditor/ConfigEditor.tsx -------------------------------------------------------------------------------- /src/components/ConfigEditor/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ConfigEditor'; 2 | -------------------------------------------------------------------------------- /src/components/QueryEditor/QueryEditor.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/components/QueryEditor/QueryEditor.test.tsx -------------------------------------------------------------------------------- /src/components/QueryEditor/QueryEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/components/QueryEditor/QueryEditor.tsx -------------------------------------------------------------------------------- /src/components/QueryEditor/index.ts: -------------------------------------------------------------------------------- 1 | export * from './QueryEditor'; 2 | -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/dashboards/redis-streaming-v8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/dashboards/redis-streaming-v8.json -------------------------------------------------------------------------------- /src/dashboards/redis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/dashboards/redis.json -------------------------------------------------------------------------------- /src/datasource/datasource.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/datasource/datasource.test.ts -------------------------------------------------------------------------------- /src/datasource/datasource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/datasource/datasource.ts -------------------------------------------------------------------------------- /src/datasource/index.ts: -------------------------------------------------------------------------------- 1 | export * from './datasource'; 2 | -------------------------------------------------------------------------------- /src/img/datasource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/img/datasource.png -------------------------------------------------------------------------------- /src/img/grafana-marketplace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/img/grafana-marketplace.png -------------------------------------------------------------------------------- /src/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/img/logo.svg -------------------------------------------------------------------------------- /src/img/query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/img/query.png -------------------------------------------------------------------------------- /src/img/redis-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/img/redis-dashboard.png -------------------------------------------------------------------------------- /src/img/redis-streaming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/img/redis-streaming.png -------------------------------------------------------------------------------- /src/img/variables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/img/variables.png -------------------------------------------------------------------------------- /src/module.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/module.test.ts -------------------------------------------------------------------------------- /src/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/module.ts -------------------------------------------------------------------------------- /src/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/plugin.json -------------------------------------------------------------------------------- /src/redis/command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/redis/command.ts -------------------------------------------------------------------------------- /src/redis/fieldValuesContainer.ts: -------------------------------------------------------------------------------- 1 | export interface FieldValuesContainer { 2 | fieldArray?: string[]; 3 | } 4 | -------------------------------------------------------------------------------- /src/redis/gears.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/redis/gears.ts -------------------------------------------------------------------------------- /src/redis/graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/redis/graph.ts -------------------------------------------------------------------------------- /src/redis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/redis/index.ts -------------------------------------------------------------------------------- /src/redis/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/redis/info.ts -------------------------------------------------------------------------------- /src/redis/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/redis/json.ts -------------------------------------------------------------------------------- /src/redis/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/redis/query.ts -------------------------------------------------------------------------------- /src/redis/redis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/redis/redis.ts -------------------------------------------------------------------------------- /src/redis/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/redis/search.ts -------------------------------------------------------------------------------- /src/redis/time-series.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/redis/time-series.ts -------------------------------------------------------------------------------- /src/redis/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/redis/types.ts -------------------------------------------------------------------------------- /src/tests/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/tests/utils.ts -------------------------------------------------------------------------------- /src/time-series/index.ts: -------------------------------------------------------------------------------- 1 | export * from './time-series'; 2 | -------------------------------------------------------------------------------- /src/time-series/time-series.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/time-series/time-series.test.ts -------------------------------------------------------------------------------- /src/time-series/time-series.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/time-series/time-series.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/HEAD/yarn.lock --------------------------------------------------------------------------------