├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── cmd └── promremotecli │ └── main.go ├── go.mod ├── go.sum └── promremote ├── client.go └── client_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3dbx/prometheus_remote_client_golang/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3dbx/prometheus_remote_client_golang/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3dbx/prometheus_remote_client_golang/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3dbx/prometheus_remote_client_golang/HEAD/README.md -------------------------------------------------------------------------------- /cmd/promremotecli/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3dbx/prometheus_remote_client_golang/HEAD/cmd/promremotecli/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3dbx/prometheus_remote_client_golang/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3dbx/prometheus_remote_client_golang/HEAD/go.sum -------------------------------------------------------------------------------- /promremote/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3dbx/prometheus_remote_client_golang/HEAD/promremote/client.go -------------------------------------------------------------------------------- /promremote/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3dbx/prometheus_remote_client_golang/HEAD/promremote/client_test.go --------------------------------------------------------------------------------