├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── VERSION ├── go.mod ├── go.sum ├── main.go └── manifests ├── deployment.yaml └── pod-monitor.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | prometheus-example-app 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brancz/prometheus-example-app/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brancz/prometheus-example-app/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brancz/prometheus-example-app/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brancz/prometheus-example-app/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | v0.5.0 2 | -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brancz/prometheus-example-app/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brancz/prometheus-example-app/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brancz/prometheus-example-app/HEAD/main.go -------------------------------------------------------------------------------- /manifests/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brancz/prometheus-example-app/HEAD/manifests/deployment.yaml -------------------------------------------------------------------------------- /manifests/pod-monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brancz/prometheus-example-app/HEAD/manifests/pod-monitor.yaml --------------------------------------------------------------------------------