├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── collector ├── bgwriter_state.go ├── cluster_state.go ├── collector.go ├── connections.go ├── connections_detail.go ├── database_size.go ├── diskspace.go ├── dynamic_memory.go ├── error.go ├── exporter_metrics.go ├── locks.go ├── max_connections.go ├── queries.go ├── scrapers.go ├── segment.go ├── segment_utils.go ├── system.go └── users.go ├── doc └── DEMO.PNG ├── docker-build.sh ├── go.mod ├── go.sum ├── grafana └── greenplum_dashboard.json ├── main.go └── stopwatch └── stopwatch.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangyibo/greenplum_exporter/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangyibo/greenplum_exporter/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | NOTHING! -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangyibo/greenplum_exporter/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangyibo/greenplum_exporter/HEAD/README.md -------------------------------------------------------------------------------- /collector/bgwriter_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangyibo/greenplum_exporter/HEAD/collector/bgwriter_state.go -------------------------------------------------------------------------------- /collector/cluster_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangyibo/greenplum_exporter/HEAD/collector/cluster_state.go -------------------------------------------------------------------------------- /collector/collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangyibo/greenplum_exporter/HEAD/collector/collector.go -------------------------------------------------------------------------------- /collector/connections.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangyibo/greenplum_exporter/HEAD/collector/connections.go -------------------------------------------------------------------------------- /collector/connections_detail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangyibo/greenplum_exporter/HEAD/collector/connections_detail.go -------------------------------------------------------------------------------- /collector/database_size.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangyibo/greenplum_exporter/HEAD/collector/database_size.go -------------------------------------------------------------------------------- /collector/diskspace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangyibo/greenplum_exporter/HEAD/collector/diskspace.go -------------------------------------------------------------------------------- /collector/dynamic_memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangyibo/greenplum_exporter/HEAD/collector/dynamic_memory.go -------------------------------------------------------------------------------- /collector/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangyibo/greenplum_exporter/HEAD/collector/error.go -------------------------------------------------------------------------------- /collector/exporter_metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangyibo/greenplum_exporter/HEAD/collector/exporter_metrics.go -------------------------------------------------------------------------------- /collector/locks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangyibo/greenplum_exporter/HEAD/collector/locks.go -------------------------------------------------------------------------------- /collector/max_connections.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangyibo/greenplum_exporter/HEAD/collector/max_connections.go -------------------------------------------------------------------------------- /collector/queries.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangyibo/greenplum_exporter/HEAD/collector/queries.go -------------------------------------------------------------------------------- /collector/scrapers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangyibo/greenplum_exporter/HEAD/collector/scrapers.go -------------------------------------------------------------------------------- /collector/segment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangyibo/greenplum_exporter/HEAD/collector/segment.go -------------------------------------------------------------------------------- /collector/segment_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangyibo/greenplum_exporter/HEAD/collector/segment_utils.go -------------------------------------------------------------------------------- /collector/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangyibo/greenplum_exporter/HEAD/collector/system.go -------------------------------------------------------------------------------- /collector/users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangyibo/greenplum_exporter/HEAD/collector/users.go -------------------------------------------------------------------------------- /doc/DEMO.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangyibo/greenplum_exporter/HEAD/doc/DEMO.PNG -------------------------------------------------------------------------------- /docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangyibo/greenplum_exporter/HEAD/docker-build.sh -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangyibo/greenplum_exporter/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangyibo/greenplum_exporter/HEAD/go.sum -------------------------------------------------------------------------------- /grafana/greenplum_dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangyibo/greenplum_exporter/HEAD/grafana/greenplum_dashboard.json -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangyibo/greenplum_exporter/HEAD/main.go -------------------------------------------------------------------------------- /stopwatch/stopwatch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangyibo/greenplum_exporter/HEAD/stopwatch/stopwatch.go --------------------------------------------------------------------------------