├── .gitignore ├── LICENSE ├── README.md ├── pom.xml ├── prometheus.yml ├── renovate.json └── src ├── main ├── java │ └── com │ │ └── tutorialworks │ │ └── demos │ │ └── springbootwithmetrics │ │ ├── Greeting.java │ │ ├── GreetingController.java │ │ └── SpringBootWithMetricsApplication.java └── resources │ ├── application.properties │ └── static │ └── index.html └── test └── java └── com └── tutorialworks └── demos └── springbootwithmetrics └── SpringBootWithMetricsApplicationTests.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutorialworks/spring-boot-with-metrics/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutorialworks/spring-boot-with-metrics/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutorialworks/spring-boot-with-metrics/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutorialworks/spring-boot-with-metrics/HEAD/pom.xml -------------------------------------------------------------------------------- /prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutorialworks/spring-boot-with-metrics/HEAD/prometheus.yml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutorialworks/spring-boot-with-metrics/HEAD/renovate.json -------------------------------------------------------------------------------- /src/main/java/com/tutorialworks/demos/springbootwithmetrics/Greeting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutorialworks/spring-boot-with-metrics/HEAD/src/main/java/com/tutorialworks/demos/springbootwithmetrics/Greeting.java -------------------------------------------------------------------------------- /src/main/java/com/tutorialworks/demos/springbootwithmetrics/GreetingController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutorialworks/spring-boot-with-metrics/HEAD/src/main/java/com/tutorialworks/demos/springbootwithmetrics/GreetingController.java -------------------------------------------------------------------------------- /src/main/java/com/tutorialworks/demos/springbootwithmetrics/SpringBootWithMetricsApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutorialworks/spring-boot-with-metrics/HEAD/src/main/java/com/tutorialworks/demos/springbootwithmetrics/SpringBootWithMetricsApplication.java -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutorialworks/spring-boot-with-metrics/HEAD/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/main/resources/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutorialworks/spring-boot-with-metrics/HEAD/src/main/resources/static/index.html -------------------------------------------------------------------------------- /src/test/java/com/tutorialworks/demos/springbootwithmetrics/SpringBootWithMetricsApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutorialworks/spring-boot-with-metrics/HEAD/src/test/java/com/tutorialworks/demos/springbootwithmetrics/SpringBootWithMetricsApplicationTests.java --------------------------------------------------------------------------------