From 8a3b8f95f696bc670076c34a1a072303b4cb61bc Mon Sep 17 00:00:00 2001 From: Ramazan Sakin Date: Wed, 17 Feb 2021 15:44:55 +0300 Subject: [PATCH] Update README.md typo fix --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f257ee5..38c2651 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ # Defining custom metrics in a Spring Boot application using Micrometer A few months ago my friend and colleague, Attila wrote a [great post](https://blog.autsoft.hu/monitoring-microservices/) on the monitoring of Spring microservices using Micrometer, Prometheus, Grafana and Kubernetes. -Now, it is time to have a closer look at Micrometer and its' integration into Spring Boot and the way one should export custom metrics using these technologies. +Now, it is time to have a closer look at Micrometer and its integration into Spring Boot and the way one should export custom metrics using these technologies. Spring Boot 2.0 brought loads of new features into our favorite Java framework. One of these new features, amongst many, is the integration of Micrometer into Spring Boot Actuator. -Micrometer is a dimensional metrics and monitoring facade to help developers integrate their application metrics to various monitoring systems while keeping the appliaction indepedendent from the actual monitoring implementation. +Micrometer is a dimensional metrics and monitoring facade to help developers integrate their application metrics to various monitoring systems while keeping the application independent from the actual monitoring implementation. As the landing page of the project states, it's like SLF4J but for metrics. ## Micrometer 101