You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/prometheus/PrometheusMetricsExportAutoConfiguration.java
+2-3
Original file line number
Diff line number
Diff line change
@@ -107,7 +107,7 @@ static class PrometheusPushGatewayConfiguration {
107
107
108
108
/**
109
109
* The fallback job name. We use 'spring' since there's a history of Prometheus
110
-
* spring integration defaulting to that name from when Prometheus integration
110
+
* Spring integration defaulting to that name from when Prometheus integration
111
111
* didn't exist in Spring itself.
112
112
*/
113
113
privatestaticfinalStringFALLBACK_JOB = "spring";
@@ -160,8 +160,7 @@ private Format format(PrometheusProperties.Pushgateway properties) {
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/prometheus/PrometheusProperties.java
+3-3
Original file line number
Diff line number
Diff line change
@@ -109,7 +109,7 @@ public static class Pushgateway {
109
109
privateStringaddress = "localhost:9091";
110
110
111
111
/**
112
-
* The scheme to use when pushing metrics.
112
+
* Scheme to use when pushing metrics.
113
113
*/
114
114
privateSchemescheme = Scheme.HTTP;
115
115
@@ -124,12 +124,12 @@ public static class Pushgateway {
124
124
privateStringpassword;
125
125
126
126
/**
127
-
* The token to use for authentication with the Prometheus Pushgateway.
127
+
* Token to use for authentication with the Prometheus Pushgateway.
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/metrics/export/prometheus/PrometheusMetricsExportAutoConfigurationTests.java
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/export/prometheus/PrometheusPushGatewayManager.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ public class PrometheusPushGatewayManager {
55
55
* @param pushGateway the source push gateway
56
56
* @param pushRate the rate at which push operations occur
57
57
* @param shutdownOperation the shutdown operation that should be performed when
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/servlet/WebMvcAutoConfigurationTests.java
0 commit comments