├── .eslintrc ├── .github └── workflows │ ├── publish.yml │ └── test.yml ├── .gitignore ├── CHANGELOG ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── package.json ├── quick-scripts ├── export_dashboards.sh └── export_datasources.sh ├── src ├── commands.js ├── index.js ├── local │ ├── alerts.js │ ├── components.js │ ├── dash-tags.js │ ├── dashboards.js │ ├── dashlist.js │ ├── datasources.js │ ├── orgs.js │ ├── panels.js │ ├── rows.js │ └── temp-vars.js ├── remote │ ├── gnet.js │ ├── grafana.js │ ├── grafana │ │ ├── clipSrv.js │ │ ├── exportSrv.js │ │ └── importSrv.js │ └── s3services.js └── util │ ├── authentication.js │ ├── config.js │ ├── formatter.js │ ├── help.js │ ├── localfs.js │ ├── logger.js │ └── request.js ├── test-scripts ├── clip-test.sh ├── local-commands-test.sh ├── other-remote-commands-test.sh ├── remote-commands-test.sh └── startup-test.sh └── test ├── remote └── grafana_tests.js └── util ├── config_tests.js ├── localfs_tests.js └── logger_tests.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/package.json -------------------------------------------------------------------------------- /quick-scripts/export_dashboards.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/quick-scripts/export_dashboards.sh -------------------------------------------------------------------------------- /quick-scripts/export_datasources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/quick-scripts/export_datasources.sh -------------------------------------------------------------------------------- /src/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/src/commands.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/src/index.js -------------------------------------------------------------------------------- /src/local/alerts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/src/local/alerts.js -------------------------------------------------------------------------------- /src/local/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/src/local/components.js -------------------------------------------------------------------------------- /src/local/dash-tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/src/local/dash-tags.js -------------------------------------------------------------------------------- /src/local/dashboards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/src/local/dashboards.js -------------------------------------------------------------------------------- /src/local/dashlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/src/local/dashlist.js -------------------------------------------------------------------------------- /src/local/datasources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/src/local/datasources.js -------------------------------------------------------------------------------- /src/local/orgs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/src/local/orgs.js -------------------------------------------------------------------------------- /src/local/panels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/src/local/panels.js -------------------------------------------------------------------------------- /src/local/rows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/src/local/rows.js -------------------------------------------------------------------------------- /src/local/temp-vars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/src/local/temp-vars.js -------------------------------------------------------------------------------- /src/remote/gnet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/src/remote/gnet.js -------------------------------------------------------------------------------- /src/remote/grafana.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/src/remote/grafana.js -------------------------------------------------------------------------------- /src/remote/grafana/clipSrv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/src/remote/grafana/clipSrv.js -------------------------------------------------------------------------------- /src/remote/grafana/exportSrv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/src/remote/grafana/exportSrv.js -------------------------------------------------------------------------------- /src/remote/grafana/importSrv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/src/remote/grafana/importSrv.js -------------------------------------------------------------------------------- /src/remote/s3services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/src/remote/s3services.js -------------------------------------------------------------------------------- /src/util/authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/src/util/authentication.js -------------------------------------------------------------------------------- /src/util/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/src/util/config.js -------------------------------------------------------------------------------- /src/util/formatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/src/util/formatter.js -------------------------------------------------------------------------------- /src/util/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/src/util/help.js -------------------------------------------------------------------------------- /src/util/localfs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/src/util/localfs.js -------------------------------------------------------------------------------- /src/util/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/src/util/logger.js -------------------------------------------------------------------------------- /src/util/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/src/util/request.js -------------------------------------------------------------------------------- /test-scripts/clip-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/test-scripts/clip-test.sh -------------------------------------------------------------------------------- /test-scripts/local-commands-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/test-scripts/local-commands-test.sh -------------------------------------------------------------------------------- /test-scripts/other-remote-commands-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/test-scripts/other-remote-commands-test.sh -------------------------------------------------------------------------------- /test-scripts/remote-commands-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/test-scripts/remote-commands-test.sh -------------------------------------------------------------------------------- /test-scripts/startup-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/test-scripts/startup-test.sh -------------------------------------------------------------------------------- /test/remote/grafana_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/test/remote/grafana_tests.js -------------------------------------------------------------------------------- /test/util/config_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/test/util/config_tests.js -------------------------------------------------------------------------------- /test/util/localfs_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/test/util/localfs_tests.js -------------------------------------------------------------------------------- /test/util/logger_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana-wizzy/wizzy/HEAD/test/util/logger_tests.js --------------------------------------------------------------------------------