summaryrefslogtreecommitdiffstats
path: root/testsuites/stability/audit_stats.py
diff options
context:
space:
mode:
authorPamela Dragosh <pdragosh@research.att.com>2020-05-19 22:56:15 +0000
committerGerrit Code Review <gerrit@onap.org>2020-05-19 22:56:15 +0000
commit292943198926ce45672f0e881d3407bb881f510a (patch)
treef627b8f22280c72f4289ed51b2a71e8faf934696 /testsuites/stability/audit_stats.py
parent8876878e8654bde9548de0a35db0d35af09defc9 (diff)
parent1890f6a811c461983bcd27b50b185b3baca392b5 (diff)
Merge "add stability test scripts"
Diffstat (limited to 'testsuites/stability/audit_stats.py')
-rw-r--r--testsuites/stability/audit_stats.py38
1 files changed, 38 insertions, 0 deletions
diff --git a/testsuites/stability/audit_stats.py b/testsuites/stability/audit_stats.py
new file mode 100644
index 000000000..c6e440402
--- /dev/null
+++ b/testsuites/stability/audit_stats.py
@@ -0,0 +1,38 @@
+# ================================================================================
+# Copyright (c) 2020 AT&T Intellectual Property. All rights reserved.
+# ================================================================================
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# ============LICENSE_END=========================================================
+
+import pandas as pd
+import matplotlib.pyplot as plt
+
+def stats(name, file):
+ ets = pd.read_csv(file, sep='|')['EllapsedTime']
+ print(name, ":")
+ print(ets.describe(percentiles=[]), "\n")
+ plt.clf()
+ plt.title(name)
+ plt.hist(ets, range=[ets.min(), ets.max()], align='mid', density=False, bins=100)
+ plt.ylabel('Frequency')
+ plt.xlabel('Transaction Processing Time');
+ plt.savefig(name + '.png')
+
+# This script is to be used in conjuction with the s3p.jmx jmeter script
+# Please refer to the ONAP readthedocs for additional information.
+
+stats("ControlLoop vCPE Success", "ControlLoop-vCPE-48f0c2c3-a172-4192-9ae3-052274181b6e.log")
+stats("ControlLoop vCPE Fail", "ControlLoop-vCPE-Fail.log")
+stats("ControlLoop vDNS Success", "ControlLoop-vDNS-6f37f56d-a87d-4b85-b6a9-cc953cf779b3.log")
+stats("ControlLoop vDNS Fail", "ControlLoop-vDNS-Fail.log")
+stats("ControlLoop vFirewall Success", "ControlLoop-vFirewall-d0a1dfc6-94f5-4fd4-a5b5-4630b438850a.log")