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/influx/InfluxProperties.java
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -55,26 +55,26 @@ public class InfluxProperties extends StepRegistryProperties {
55
55
56
56
/**
57
57
* Retention policy to use (Influx writes to the DEFAULT retention policy if one is
58
-
* not specified).
58
+
* not specified). InfluxDB v1 only.
59
59
*/
60
60
privateStringretentionPolicy;
61
61
62
62
/**
63
63
* Time period for which Influx should retain data in the current database. For
64
64
* instance 7d, check the influx documentation for more details on the duration
65
-
* format.
65
+
* format. InfluxDB v1 only.
66
66
*/
67
67
privateStringretentionDuration;
68
68
69
69
/**
70
70
* How many copies of the data are stored in the cluster. Must be 1 for a single node
71
-
* instance.
71
+
* instance. InfluxDB v1 only.
72
72
*/
73
73
privateIntegerretentionReplicationFactor;
74
74
75
75
/**
76
76
* Time range covered by a shard group. For instance 2w, check the influx
77
-
* documentation for more details on the duration format.
77
+
* documentation for more details on the duration format. InfluxDB v1 only.
0 commit comments