X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fnorthbound%2Fstatistics%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fstatistics%2Fnorthbound%2FStatisticsNorthbound.java;h=5338849a62626ed740c6d930d72064efa1dca4d2;hb=e640f23d9c37afac9ca51f48e155302bc65327ed;hp=a47bfa70b77e9fa2d0657529df2e676f8ab98f2a;hpb=1415e57c132459f962afcc976da3b72c28a5702b;p=controller.git diff --git a/opendaylight/northbound/statistics/src/main/java/org/opendaylight/controller/statistics/northbound/StatisticsNorthbound.java b/opendaylight/northbound/statistics/src/main/java/org/opendaylight/controller/statistics/northbound/StatisticsNorthbound.java index a47bfa70b7..5338849a62 100644 --- a/opendaylight/northbound/statistics/src/main/java/org/opendaylight/controller/statistics/northbound/StatisticsNorthbound.java +++ b/opendaylight/northbound/statistics/src/main/java/org/opendaylight/controller/statistics/northbound/StatisticsNorthbound.java @@ -114,7 +114,7 @@ public class StatisticsNorthbound { * Request URL: * http://localhost:8080/controller/nb/v2/statistics/default/flow * - * Response in JSON: + * Response body in JSON: * { * "flowStatistics": [ * { @@ -171,7 +171,7 @@ public class StatisticsNorthbound { * ] * } * - * Response in XML: + * Response body in XML: * <?xml version="1.0" encoding="UTF-8" standalone="yes"?> * <list> * <flowStatistics> @@ -287,7 +287,7 @@ public class StatisticsNorthbound { * Request URL: * http://localhost:8080/controller/nb/v2/statistics/default/flow/node/OF/00:00:00:00:00:00:00:01 * - * Response in JSON: + * Response body in JSON: * { * "node": { * "id":"00:00:00:00:00:00:00:01", @@ -340,7 +340,7 @@ public class StatisticsNorthbound { * ] * } * - * Response in XML: + * Response body in XML: * <?xml version="1.0" encoding="UTF-8" standalone="yes"?> * <nodeFlowStatistics> * <node> @@ -474,7 +474,7 @@ public class StatisticsNorthbound { * Request URL: * http://localhost:8080/controller/nb/v2/statistics/default/port * - * Response in JSON: + * Response body in JSON: * { * "portStatistics": [ * { @@ -544,7 +544,7 @@ public class StatisticsNorthbound { * ] * } * - * Response in XML: + * Response body in XML: * <?xml version="1.0" encoding="UTF-8" standalone="yes"?> * <list> * <portStatistics> @@ -662,7 +662,7 @@ public class StatisticsNorthbound { * Request URL: * http://localhost:8080/controller/nb/v2/statistics/default/port/node/OF/00:00:00:00:00:00:00:01 * - * Response in JSON: + * Response body in JSON: * { * "node": { * "id":"00:00:00:00:00:00:00:01", @@ -716,7 +716,7 @@ public class StatisticsNorthbound { * ] * } * - * Response in XML: + * Response body in XML: * <?xml version="1.0" encoding="UTF-8" standalone="yes"?> * <nodePortStatistics> * <node> @@ -825,7 +825,7 @@ public class StatisticsNorthbound { * Request URL: * http://localhost:8080/controller/nb/v2/statistics/default/table * - * Response in JSON: + * Response body in JSON: * { * "tableStatistics": [ * { @@ -844,7 +844,8 @@ public class StatisticsNorthbound { * }, * "activeCount": "11", * "lookupCount": "816", - * "matchedCount": "220" + * "matchedCount": "220", + * "maximumEntries": "1000" * }, * { * ...another table @@ -857,7 +858,7 @@ public class StatisticsNorthbound { * ] * } * - * Response in XML: + * Response body in XML: * <?xml version="1.0" encoding="UTF-8" standalone="yes"?> * <list> * <tableStatistics> @@ -876,6 +877,7 @@ public class StatisticsNorthbound { * <activeCount>12</activeCount> * <lookupCount>10935</lookupCount> * <matchedCount>10084</matchedCount> + * <maximumEntries>1000</maximumEntries> * </tableStatistic> * <tableStatistic> * <nodeTable> @@ -888,6 +890,7 @@ public class StatisticsNorthbound { * <activeCount>0</activeCount> * <lookupCount>0</lookupCount> * <matchedCount>0</matchedCount> + * <maximumEntries>0</maximumEntries> * </tableStatistic> * <tableStatistic> * <nodeTable> @@ -900,6 +903,7 @@ public class StatisticsNorthbound { * <activeCount>0</activeCount> * <lookupCount>0</lookupCount> * <matchedCount>0</matchedCount> + * <maximumEntries>0</maximumEntries> * </tableStatistic> * </tableStatistics> * <tableStatistics> @@ -970,7 +974,7 @@ public class StatisticsNorthbound { * Request URL: * http://localhost:8080/controller/nb/v2/statistics/default/table/node/OF/00:00:00:00:00:00:00:01 * - * Response in JSON: + * Response body in JSON: * { * "node": { * "id":"00:00:00:00:00:00:00:01", @@ -987,7 +991,8 @@ public class StatisticsNorthbound { * }, * "activeCount": "12", * "lookupCount": "11382", - * "matchedCount": "10524" + * "matchedCount": "10524", + * "maximumEntries": "1000" * }, * { * "nodeTable": { @@ -999,12 +1004,13 @@ public class StatisticsNorthbound { * }, * "activeCount": "0", * "lookupCount": "0", - * "matchedCount": "0" + * "matchedCount": "0", + * "maximumEntries": "0" * } * ] * } * - * Response in XML: + * Response body in XML: * <?xml version="1.0" encoding="UTF-8" standalone="yes"?> * <nodeTableStatistics> * <node> @@ -1022,6 +1028,7 @@ public class StatisticsNorthbound { * <activeCount>12</activeCount> * <lookupCount>10935</lookupCount> * <matchedCount>10084</matchedCount> + * <maximumEntries>1000</maximumEntries> * </tableStatistic> * <tableStatistic> * <nodeTable> @@ -1034,6 +1041,7 @@ public class StatisticsNorthbound { * <activeCount>0</activeCount> * <lookupCount>0</lookupCount> * <matchedCount>0</matchedCount> + * <maximumEntries>0</maximumEntries> * </tableStatistic> * <tableStatistic> * <nodeTable> @@ -1046,6 +1054,7 @@ public class StatisticsNorthbound { * <activeCount>0</activeCount> * <lookupCount>0</lookupCount> * <matchedCount>0</matchedCount> + * <maximumEntries>0</maximumEntries> * </tableStatistic> * </nodeTableStatistics> *