From 1890f6a811c461983bcd27b50b185b3baca392b5 Mon Sep 17 00:00:00 2001 From: jhh Date: Tue, 19 May 2020 13:31:39 -0500 Subject: add stability test scripts Issue-ID: POLICY-2456 Signed-off-by: jhh Change-Id: I89a325cfc2dedd10936c28176a0e11e5c54f24b4 Signed-off-by: jhh --- testsuites/stability/audit_stats.py | 38 +++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 testsuites/stability/audit_stats.py (limited to 'testsuites/stability/audit_stats.py') 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") -- cgit 1.2.3-korg