diff options
author | jhh <jorge.hernandez-herrero@att.com> | 2020-05-19 13:31:39 -0500 |
---|---|---|
committer | jhh <jorge.hernandez-herrero@att.com> | 2020-05-19 16:41:09 -0500 |
commit | 1890f6a811c461983bcd27b50b185b3baca392b5 (patch) | |
tree | 28e4cc1120e900ffadcf25609049d5c34d4a3556 /testsuites/stability/audit_stats.py | |
parent | 01e76180743d49a61803299cca959f2a1d03247b (diff) |
add stability test scripts
Issue-ID: POLICY-2456
Signed-off-by: jhh <jorge.hernandez-herrero@att.com>
Change-Id: I89a325cfc2dedd10936c28176a0e11e5c54f24b4
Signed-off-by: jhh <jorge.hernandez-herrero@att.com>
Diffstat (limited to 'testsuites/stability/audit_stats.py')
-rw-r--r-- | testsuites/stability/audit_stats.py | 38 |
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") |