├── .github ├── CODEOWNERS ├── actions │ └── setup │ │ └── action.yml └── workflows │ ├── ci.yml │ ├── pr-checks.yml │ └── release-please.yml ├── .gitignore ├── .release-please-manifest.json ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── Magefile.go ├── README.md ├── api ├── api.go ├── gcom │ ├── gcom.go │ └── models.go └── grafana │ ├── grafana.go │ └── models.go ├── detector ├── detector.go ├── detector_test.go └── testdata │ ├── dashboard-meta.json │ ├── dashboards │ ├── datasource.json │ ├── datatable.json │ ├── graph-old.json │ ├── mixed.json │ ├── multiple.json │ ├── not-angular.json │ ├── rows-collapsed.json │ └── rows-expanded.json │ ├── datasources.json │ ├── frontend-settings.json │ └── plugins.json ├── flags └── flags.go ├── go.mod ├── go.sum ├── logger └── logger.go ├── main.go ├── output └── output.go └── release-please-config.json /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/pr-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/.github/workflows/pr-checks.yml -------------------------------------------------------------------------------- /.github/workflows/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/.github/workflows/release-please.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | detect-angular-dashboards 3 | dist 4 | .vscode 5 | -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "0.11.1" 3 | } 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/LICENSE -------------------------------------------------------------------------------- /Magefile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/Magefile.go -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/README.md -------------------------------------------------------------------------------- /api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/api/api.go -------------------------------------------------------------------------------- /api/gcom/gcom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/api/gcom/gcom.go -------------------------------------------------------------------------------- /api/gcom/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/api/gcom/models.go -------------------------------------------------------------------------------- /api/grafana/grafana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/api/grafana/grafana.go -------------------------------------------------------------------------------- /api/grafana/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/api/grafana/models.go -------------------------------------------------------------------------------- /detector/detector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/detector/detector.go -------------------------------------------------------------------------------- /detector/detector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/detector/detector_test.go -------------------------------------------------------------------------------- /detector/testdata/dashboard-meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/detector/testdata/dashboard-meta.json -------------------------------------------------------------------------------- /detector/testdata/dashboards/datasource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/detector/testdata/dashboards/datasource.json -------------------------------------------------------------------------------- /detector/testdata/dashboards/datatable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/detector/testdata/dashboards/datatable.json -------------------------------------------------------------------------------- /detector/testdata/dashboards/graph-old.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/detector/testdata/dashboards/graph-old.json -------------------------------------------------------------------------------- /detector/testdata/dashboards/mixed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/detector/testdata/dashboards/mixed.json -------------------------------------------------------------------------------- /detector/testdata/dashboards/multiple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/detector/testdata/dashboards/multiple.json -------------------------------------------------------------------------------- /detector/testdata/dashboards/not-angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/detector/testdata/dashboards/not-angular.json -------------------------------------------------------------------------------- /detector/testdata/dashboards/rows-collapsed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/detector/testdata/dashboards/rows-collapsed.json -------------------------------------------------------------------------------- /detector/testdata/dashboards/rows-expanded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/detector/testdata/dashboards/rows-expanded.json -------------------------------------------------------------------------------- /detector/testdata/datasources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/detector/testdata/datasources.json -------------------------------------------------------------------------------- /detector/testdata/frontend-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/detector/testdata/frontend-settings.json -------------------------------------------------------------------------------- /detector/testdata/plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/detector/testdata/plugins.json -------------------------------------------------------------------------------- /flags/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/flags/flags.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/go.sum -------------------------------------------------------------------------------- /logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/logger/logger.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/main.go -------------------------------------------------------------------------------- /output/output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/output/output.go -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/detect-angular-dashboards/HEAD/release-please-config.json --------------------------------------------------------------------------------