diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc index e35d6bc2e9c..5efa8656986 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc @@ -1356,9 +1356,26 @@ content into your application. Rather, pick only the properties that you need. management.metrics.export.influx.uri= # URI of the Influx server. management.metrics.export.influx.user-name= # Login user of the Influx server. management.metrics.export.jmx.step= # Step size (i.e. reporting frequency) to use. + management.metrics.export.newrelic.account-id= # New Relic account ID. + management.metrics.export.newrelic.api-key= # New Relic API key. + management.metrics.export.newrelic.batch-size= # Number of measurements per request to use for this backend. If more measurements are found, then multiple requests will be made. + management.metrics.export.newrelic.connect-timeout= # Connection timeout for requests to this backend. + management.metrics.export.newrelic.enabled= # Whether exporting of metrics to this backend is enabled. + management.metrics.export.newrelic.num-threads= # Number of threads to use with the metrics publishing scheduler. + management.metrics.export.newrelic.read-timeout= # Read timeout for requests to this backend. + management.metrics.export.newrelic.step=1m # Step size (i.e. reporting frequency) to use. + management.metrics.export.newrelic.uri= # Optional custom URI for the New Relic Insights API. management.metrics.export.prometheus.descriptions= # Enable publishing descriptions as part of the scrape payload to Prometheus. Turn this off to minimize the amount of data sent on each scrape. management.metrics.export.prometheus.enabled=true # Whether exporting of metrics to Prometheus is enabled. management.metrics.export.prometheus.step= # Step size (i.e. reporting frequency) to use. + management.metrics.export.signalfx.access-token= # SignalFX access token. + management.metrics.export.signalfx.batch-size= # Number of measurements per request to use for this backend. If more measurements are found, then multiple requests will be made. + management.metrics.export.signalfx.connect-timeout= # Connection timeout for requests to this backend. + management.metrics.export.signalfx.enabled= # Whether exporting of metrics to this backend is enabled. + management.metrics.export.signalfx.num-threads= # Number of threads to use with the metrics publishing scheduler. + management.metrics.export.signalfx.read-timeout= # Read timeout for requests to this backend. + management.metrics.export.signalfx.step=1m # Step size (i.e. reporting frequency) to use. + management.metrics.export.signalfx.uri= # Optional custom URI for the SignalFX API. management.metrics.export.simple.mode=cumulative # Counting mode. management.metrics.export.simple.step=10s # Step size (i.e. reporting frequency) to use. management.metrics.export.statsd.flavor=datadog # StatsD line protocol to use.