├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── feature-request---new-table.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── add-issue-to-project.yml │ ├── golangci-lint.yml │ ├── registry-publish.yml │ ├── stale.yml │ ├── steampipe-anywhere.yml │ └── sync-labels.yml ├── .gitignore ├── .goreleaser.yml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── config └── prometheus.spc ├── docs ├── LICENSE ├── index.md └── tables │ ├── prometheus_alert.md │ ├── prometheus_label.md │ ├── prometheus_metric.md │ ├── prometheus_rule.md │ ├── prometheus_rule_group.md │ ├── prometheus_series.md │ ├── prometheus_target.md │ └── {metric_name}.md ├── go.mod ├── go.sum ├── main.go └── prometheus ├── connection_config.go ├── plugin.go ├── table_prometheus_alert.go ├── table_prometheus_dynamic_metric.go ├── table_prometheus_label.go ├── table_prometheus_metric.go ├── table_prometheus_rule.go ├── table_prometheus_rule_group.go ├── table_prometheus_series.go ├── table_prometheus_target.go └── utils.go /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request---new-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/.github/ISSUE_TEMPLATE/feature-request---new-table.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/add-issue-to-project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/.github/workflows/add-issue-to-project.yml -------------------------------------------------------------------------------- /.github/workflows/golangci-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/.github/workflows/golangci-lint.yml -------------------------------------------------------------------------------- /.github/workflows/registry-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/.github/workflows/registry-publish.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/steampipe-anywhere.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/.github/workflows/steampipe-anywhere.yml -------------------------------------------------------------------------------- /.github/workflows/sync-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/.github/workflows/sync-labels.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/README.md -------------------------------------------------------------------------------- /config/prometheus.spc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/config/prometheus.spc -------------------------------------------------------------------------------- /docs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/docs/LICENSE -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/tables/prometheus_alert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/docs/tables/prometheus_alert.md -------------------------------------------------------------------------------- /docs/tables/prometheus_label.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/docs/tables/prometheus_label.md -------------------------------------------------------------------------------- /docs/tables/prometheus_metric.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/docs/tables/prometheus_metric.md -------------------------------------------------------------------------------- /docs/tables/prometheus_rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/docs/tables/prometheus_rule.md -------------------------------------------------------------------------------- /docs/tables/prometheus_rule_group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/docs/tables/prometheus_rule_group.md -------------------------------------------------------------------------------- /docs/tables/prometheus_series.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/docs/tables/prometheus_series.md -------------------------------------------------------------------------------- /docs/tables/prometheus_target.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/docs/tables/prometheus_target.md -------------------------------------------------------------------------------- /docs/tables/{metric_name}.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/docs/tables/{metric_name}.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/main.go -------------------------------------------------------------------------------- /prometheus/connection_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/prometheus/connection_config.go -------------------------------------------------------------------------------- /prometheus/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/prometheus/plugin.go -------------------------------------------------------------------------------- /prometheus/table_prometheus_alert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/prometheus/table_prometheus_alert.go -------------------------------------------------------------------------------- /prometheus/table_prometheus_dynamic_metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/prometheus/table_prometheus_dynamic_metric.go -------------------------------------------------------------------------------- /prometheus/table_prometheus_label.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/prometheus/table_prometheus_label.go -------------------------------------------------------------------------------- /prometheus/table_prometheus_metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/prometheus/table_prometheus_metric.go -------------------------------------------------------------------------------- /prometheus/table_prometheus_rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/prometheus/table_prometheus_rule.go -------------------------------------------------------------------------------- /prometheus/table_prometheus_rule_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/prometheus/table_prometheus_rule_group.go -------------------------------------------------------------------------------- /prometheus/table_prometheus_series.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/prometheus/table_prometheus_series.go -------------------------------------------------------------------------------- /prometheus/table_prometheus_target.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/prometheus/table_prometheus_target.go -------------------------------------------------------------------------------- /prometheus/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-prometheus/HEAD/prometheus/utils.go --------------------------------------------------------------------------------