├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── go.mod ├── main.go ├── makefile ├── pkg └── postgresql │ └── client.go └── start.sh /.gitignore: -------------------------------------------------------------------------------- 1 | postgresql-prometheus-adapter 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrunchyData/postgresql-prometheus-adapter/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrunchyData/postgresql-prometheus-adapter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrunchyData/postgresql-prometheus-adapter/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrunchyData/postgresql-prometheus-adapter/HEAD/go.mod -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrunchyData/postgresql-prometheus-adapter/HEAD/main.go -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrunchyData/postgresql-prometheus-adapter/HEAD/makefile -------------------------------------------------------------------------------- /pkg/postgresql/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrunchyData/postgresql-prometheus-adapter/HEAD/pkg/postgresql/client.go -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrunchyData/postgresql-prometheus-adapter/HEAD/start.sh --------------------------------------------------------------------------------