weizhouapache commented on code in PR #12567:
URL: https://github.com/apache/cloudstack/pull/12567#discussion_r2828046516
##########
engine/api/src/main/java/org/apache/cloudstack/engine/orchestration/service/NetworkOrchestrationService.java:
##########
@@ -112,6 +112,9 @@ public interface NetworkOrchestrationService {
ConfigKey<Boolean> NSX_ENABLED = new ConfigKey<>(Boolean.class,
"nsx.plugin.enable", "Advanced", "false",
"Indicates whether to enable the NSX plugin", false,
ConfigKey.Scope.Zone, null);
+ ConfigKey<Integer> VmNetworkThrottlingRate = new
ConfigKey<Integer>("Network", Integer.class, "vm.network.throttling.rate",
"200",
Review Comment:
maybe extent to a zone-level setting ?
similar to
```
ConfigKey<Integer> NetworkThrottlingRate = new ConfigKey<>("Network",
Integer.class, NetworkThrottlingRateCK, "200",
"Default data transfer rate in megabits per second allowed in
network.", true, ConfigKey.Scope.Zone);
```
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]