4
4
import static io .micrometer .prometheusmetrics .PrometheusConfig .DEFAULT ;
5
5
6
6
import io .micrometer .core .instrument .Metrics ;
7
- import io .micrometer .core .instrument .Timer ;
8
7
import io .micrometer .core .instrument .binder .jvm .ClassLoaderMetrics ;
9
8
import io .micrometer .core .instrument .binder .jvm .JvmGcMetrics ;
10
9
import io .micrometer .core .instrument .binder .jvm .JvmInfoMetrics ;
@@ -24,48 +23,24 @@ private MetricsUtil() {
24
23
25
24
static {
26
25
Metrics .addRegistry (REGISTRY );
26
+ // JVM
27
27
new ClassLoaderMetrics ().bindTo (globalRegistry );
28
28
new JvmMemoryMetrics ().bindTo (globalRegistry );
29
29
new JvmGcMetrics ().bindTo (globalRegistry );
30
- new ProcessorMetrics ().bindTo (globalRegistry );
31
30
new JvmThreadMetrics ().bindTo (globalRegistry );
32
31
new JvmInfoMetrics ().bindTo (globalRegistry );
32
+ // System
33
+ new ProcessorMetrics ().bindTo (globalRegistry );
33
34
new UptimeMetrics ().bindTo (globalRegistry );
35
+ // Logging
34
36
new LogbackMetrics ().bindTo (globalRegistry );
35
37
}
36
38
37
39
public static String scrape () {
38
40
return REGISTRY .scrape ();
39
41
}
40
42
41
- public static void timerUtenHistogram (String navn ) {
42
- timerMedPercentiler (navn , 0.5 , 0.95 , 0.99 );
43
- }
44
-
45
- public static void timerMedianUtenHistogram (String navn ) {
46
- timerMedPercentiler (navn , 0.5 );
47
- }
48
-
49
- public static void timerMedPercentiler (String navn , double ... percentiles ) {
50
- Timer .builder (navn )
51
- .publishPercentiles (percentiles )
52
- .publishPercentileHistogram (false )
53
- .register (globalRegistry );
54
- }
55
-
56
- public static void timerMedHistogram (String navn ) {
57
- timerMedHistogram (navn , 0.5 , 0.95 , 0.99 );
58
- }
59
-
60
- public static void timerMedianMedHistogram (String navn ) {
61
- timerMedHistogram (navn , 0.5 );
62
- }
63
-
64
- public static void timerMedHistogram (String navn , double ... percentiles ) {
65
- Timer .builder (navn )
66
- .publishPercentiles (percentiles )
67
- .publishPercentileHistogram (true )
68
- .register (globalRegistry );
69
- }
43
+ // Til info Eksempel på timer med percentiler
44
+ // Timer.builder(navn).publishPercentiles(double... percentiles).publishPercentileHistogram(boolean).register(globalRegistry);
70
45
71
46
}
0 commit comments