Create PDP Monitoring GUI Model 82/102282/5
authorHengye <yehui.wang@est.tech>
Tue, 25 Feb 2020 01:15:58 +0000 (09:15 +0800)
committerHengye <yehui.wang@est.tech>
Tue, 3 Mar 2020 01:26:05 +0000 (09:26 +0800)
commit7fa12fdd8d4428a8b21ad143943858a1ca2e0e27
tree770f902b866e426776a5b450c431ae1799c48a7f
parentfd7eb2d478674ae0922abee899d784441c7f3487
Create PDP Monitoring GUI Model

Monitorning GUI to monitor PDPs Statistics, including
Web and Rest Server by embeded jetty.

Issue-ID: POLICY-2311
Signed-off-by: Hengye <yehui.wang@est.tech>
Change-Id: I9bd0d50eaa7ae4dbd07d17389da2cf107e854c61
43 files changed:
gui-common/pom.xml [new file with mode: 0644]
gui-common/src/main/assembly/resources.xml [new file with mode: 0644]
gui-common/src/main/resources/css/interfaceAssets.css [new file with mode: 0644]
gui-common/src/main/resources/css/papChartLib.css [new file with mode: 0644]
gui-common/src/main/resources/css/styles.css [new file with mode: 0644]
gui-common/src/main/resources/jquery/jquery-3.4.1.min.js [new file with mode: 0644]
gui-pdp-monitoring/pom.xml [new file with mode: 0644]
gui-pdp-monitoring/src/main/assembly/resources.xml [new file with mode: 0644]
gui-pdp-monitoring/src/main/java/org/onap/policy/gui/pdp/monitoring/PdpMonitoringMain.java [new file with mode: 0644]
gui-pdp-monitoring/src/main/java/org/onap/policy/gui/pdp/monitoring/PdpMonitoringServer.java [new file with mode: 0644]
gui-pdp-monitoring/src/main/java/org/onap/policy/gui/pdp/monitoring/PdpMonitoringServerParameterException.java [new file with mode: 0644]
gui-pdp-monitoring/src/main/java/org/onap/policy/gui/pdp/monitoring/PdpMonitoringServerParameterParser.java [new file with mode: 0644]
gui-pdp-monitoring/src/main/java/org/onap/policy/gui/pdp/monitoring/PdpMonitoringServerParameters.java [new file with mode: 0644]
gui-pdp-monitoring/src/main/java/org/onap/policy/gui/pdp/monitoring/package-info.java [new file with mode: 0644]
gui-pdp-monitoring/src/main/java/org/onap/policy/gui/pdp/monitoring/rest/EngineStatus.java [new file with mode: 0644]
gui-pdp-monitoring/src/main/java/org/onap/policy/gui/pdp/monitoring/rest/PdpMonitoringRestResource.java [new file with mode: 0644]
gui-pdp-monitoring/src/main/java/org/onap/policy/gui/pdp/monitoring/rest/StatisticsResponse.java [new file with mode: 0644]
gui-pdp-monitoring/src/main/resources/webapp/css/interfaceAssets.css [new file with mode: 0644]
gui-pdp-monitoring/src/main/resources/webapp/css/papChartLib.css [new file with mode: 0644]
gui-pdp-monitoring/src/main/resources/webapp/css/styles.css [new file with mode: 0644]
gui-pdp-monitoring/src/main/resources/webapp/images/logo_onap.png [new file with mode: 0644]
gui-pdp-monitoring/src/main/resources/webapp/index.html [new file with mode: 0644]
gui-pdp-monitoring/src/main/resources/webapp/jquery/jquery-3.4.1.min.js [new file with mode: 0644]
gui-pdp-monitoring/src/main/resources/webapp/js/MonitoringAjax.js [new file with mode: 0644]
gui-pdp-monitoring/src/main/resources/webapp/js/MonitoringChart.js [new file with mode: 0644]
gui-pdp-monitoring/src/main/resources/webapp/js/MonitoringMain.js [new file with mode: 0644]
gui-pdp-monitoring/src/main/resources/webapp/js/MonitoringTable.js [new file with mode: 0644]
gui-pdp-monitoring/src/main/resources/webapp/js/MonitoringUtils.js [new file with mode: 0644]
gui-pdp-monitoring/src/main/resources/webapp/js/PdpEngineWorkerStatus.js [new file with mode: 0644]
gui-pdp-monitoring/src/main/resources/webapp/js/PdpInformation.js [new file with mode: 0644]
gui-pdp-monitoring/src/main/resources/webapp/js/PdpListView.js [new file with mode: 0644]
gui-pdp-monitoring/src/main/resources/webapp/js/PdpStatisticsSummary.js [new file with mode: 0644]
gui-pdp-monitoring/src/main/resources/webapp/js/d3/LICENSE [new file with mode: 0644]
gui-pdp-monitoring/src/main/resources/webapp/js/d3/d3.min.js [new file with mode: 0644]
gui-pdp-monitoring/src/main/resources/webapp/resources/16px/rowCollapsed_black_16px.svg [new file with mode: 0644]
gui-pdp-monitoring/src/main/resources/webapp/resources/16px/rowExpanded_black_16px.svg [new file with mode: 0644]
gui-pdp-monitoring/src/main/resources/webapp/resources/16px/settings_black_16px.svg [new file with mode: 0644]
gui-pdp-monitoring/src/main/resources/webapp/resources/systemBar/help_black.svg [new file with mode: 0644]
gui-pdp-monitoring/src/main/resources/webapp/resources/systemBar/logout_black.svg [new file with mode: 0644]
gui-pdp-monitoring/src/test/java/org/onap/policy/gui/pdp/monitoring/MonitoringExceptionTest.java [new file with mode: 0644]
gui-pdp-monitoring/src/test/java/org/onap/policy/gui/pdp/monitoring/MonitoringMainTest.java [new file with mode: 0644]
gui-pdp-monitoring/src/test/java/org/onap/policy/gui/pdp/monitoring/MonitoringRestTest.java [new file with mode: 0644]
pom.xml