Bug7485 Make statistics poller parameters configurable.
[openflowplugin.git] / openflowplugin-api / src / main / yang / openflow-provider-config.yang
index 96556def3124678ad99661398c9c00f28600ae39..d9497d7811b9e03f02af4b47263cec3f4f04b4de 100644 (file)
@@ -95,5 +95,18 @@ module openflow-provider-config {
             type boolean;
             default "true";
         }
+
+        leaf basic-timer-delay {
+            description "initial delay used in polling the statistics, value is in milliseconds";
+            type non-zero-uint32-type;
+            default 3000;
+        }
+
+        leaf maximum-timer-delay {
+            description "maximum timer delay is the wait time to collect next statistics
+            used in polling the statistics, value is in milliseconds";
+            type non-zero-uint32-type;
+            default 900000;
+        }
     }
 }
\ No newline at end of file