Browse Source

Polish "Add StatsD transport protocol configuration option"

See gh-22125
pull/22164/head
Andy Wilkinson 6 years ago
parent
commit
77eb5f7794
  1. 2
      spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/statsd/StatsdProperties.java
  2. 2
      spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/metrics/export/statsd/StatsdPropertiesTests.java
  3. 2
      spring-boot-project/spring-boot-docs/src/docs/asciidoc/production-ready-features.adoc

2
spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/statsd/StatsdProperties.java

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
/*
* Copyright 2012-2019 the original author or authors.
* Copyright 2012-2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/metrics/export/statsd/StatsdPropertiesTests.java

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
/*
* Copyright 2012-2019 the original author or authors.
* Copyright 2012-2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
spring-boot-project/spring-boot-docs/src/docs/asciidoc/production-ready-features.adoc

@ -1764,7 +1764,7 @@ You can also change the interval at which metrics are sent to Stackdriver: @@ -1764,7 +1764,7 @@ You can also change the interval at which metrics are sent to Stackdriver:
==== StatsD
The StatsD registry pushes metrics over UDP to a StatsD agent eagerly.
By default, metrics are exported to a {micrometer-registry-docs}/statsd[StatsD] agent running on your local machine.
The StatsD agent host,port, and protocol to use can be provided using:
The StatsD agent host, port, and protocol to use can be provided using:
[source,properties,indent=0,configprops]
----

Loading…
Cancel
Save