sureshanaparti commented on a change in pull request #4790:
URL: https://github.com/apache/cloudstack/pull/4790#discussion_r639439274
##########
File path: server/src/main/java/com/cloud/server/StatsCollector.java
##########
@@ -204,6 +206,9 @@ public String toString() {
private static final String INFLUXDB_HOST_MEASUREMENT = "host_stats";
private static final String INFLUXDB_VM_MEASUREMENT = "vm_stats";
+ private static final double MIN_STORAGE_SECONDARY_CAPACITY_THRESHOLD =
0.00;
Review comment:
```suggestion
private static final double MIN_SECONDARY_STORAGE_CAPACITY_THRESHOLD =
0.00;
```
Note: this is not required, If you use configuration framework.
##########
File path: server/src/main/java/com/cloud/server/StatsCollector.java
##########
@@ -204,6 +206,9 @@ public String toString() {
private static final String INFLUXDB_HOST_MEASUREMENT = "host_stats";
private static final String INFLUXDB_VM_MEASUREMENT = "vm_stats";
+ private static final double MIN_STORAGE_SECONDARY_CAPACITY_THRESHOLD =
0.00;
+ private static final double MAX_STORAGE_SECONDARY_CAPACITY_THRESHOLD =
1.00;
Review comment:
```suggestion
private static final double MAX_SECONDARY_STORAGE_CAPACITY_THRESHOLD =
1.00;
```
Note: this is not required, If you use configuration framework.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]