Turning adaptive flow sampling off by default
Change-Id: Ia1501e6b904c8f16656d650761630d60c1e712c3
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -114,7 +114,7 @@ public class OpenFlowRuleProvider extends AbstractProvider | ... | @@ -114,7 +114,7 @@ public class OpenFlowRuleProvider extends AbstractProvider |
114 | label = "Frequency (in seconds) for polling flow statistics") | 114 | label = "Frequency (in seconds) for polling flow statistics") |
115 | private int flowPollFrequency = DEFAULT_POLL_FREQUENCY; | 115 | private int flowPollFrequency = DEFAULT_POLL_FREQUENCY; |
116 | 116 | ||
117 | - private static final boolean DEFAULT_ADAPTIVE_FLOW_SAMPLING = true; | 117 | + private static final boolean DEFAULT_ADAPTIVE_FLOW_SAMPLING = false; |
118 | @Property(name = "adaptiveFlowSampling", boolValue = DEFAULT_ADAPTIVE_FLOW_SAMPLING, | 118 | @Property(name = "adaptiveFlowSampling", boolValue = DEFAULT_ADAPTIVE_FLOW_SAMPLING, |
119 | label = "Adaptive Flow Sampling is on or off") | 119 | label = "Adaptive Flow Sampling is on or off") |
120 | private boolean adaptiveFlowSampling = DEFAULT_ADAPTIVE_FLOW_SAMPLING; | 120 | private boolean adaptiveFlowSampling = DEFAULT_ADAPTIVE_FLOW_SAMPLING; | ... | ... |
-
Please register or login to post a comment