We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 429b1b0 commit caa9ff5Copy full SHA for caa9ff5
.gitignore
@@ -24,4 +24,5 @@ jacoco.exec
24
node
25
dump
26
TODO.md
27
-.interp
+.interp
28
+.factorypath
doc/doc/micrometer/micrometer.md
@@ -78,6 +78,15 @@ import org.jooby.micrometer.PrometheusHandler;
78
}
79
```
80
81
+> NOTE: for each additional registry, you must add the corresponding `micrometer` depedency. For <a href="https://prometheus.io/">Prometheus</a>:
82
+
83
+```xml
84
+<dependency>
85
+ <groupId>io.micrometer</groupId>
86
+ <artifactId>micrometer-registry-prometheus</artifactId>
87
+</dependency>
88
+```
89
90
## timed annotation
91
92
Jooby supports the ```io.micrometer.core.annotation.Timed``` annotation for MVC routes:
0 commit comments