From 1111b3db980de428d9b519adf6cd8259d4568cc4 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Thu, 18 Mar 2021 09:10:42 +0100 Subject: [PATCH] Polish --- .../metrics/export/influx/InfluxProperties.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/influx/InfluxProperties.java b/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/influx/InfluxProperties.java index ead56e9d7c..0efc9deadc 100644 --- a/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/influx/InfluxProperties.java +++ b/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/influx/InfluxProperties.java @@ -55,26 +55,26 @@ public class InfluxProperties extends StepRegistryProperties { /** * Retention policy to use (Influx writes to the DEFAULT retention policy if one is - * not specified). + * not specified). InfluxDB v1 only. */ private String retentionPolicy; /** * Time period for which Influx should retain data in the current database. For * instance 7d, check the influx documentation for more details on the duration - * format. + * format. InfluxDB v1 only. */ private String retentionDuration; /** * How many copies of the data are stored in the cluster. Must be 1 for a single node - * instance. + * instance. InfluxDB v1 only. */ private Integer retentionReplicationFactor; /** * Time range covered by a shard group. For instance 2w, check the influx - * documentation for more details on the duration format. + * documentation for more details on the duration format. InfluxDB v1 only. */ private String retentionShardDuration;