Set all cross references of policy/drools-applications
[policy/drools-applications.git] / testsuites / stability / audit_stats.py
1 # ================================================================================
2 # Copyright (c) 2020 AT&T Intellectual Property. All rights reserved.
3 # ================================================================================
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #      http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 # ============LICENSE_END=========================================================
16
17 import pandas as pd
18 import matplotlib.pyplot as plt
19
20 def stats(name, file):
21     ets = pd.read_csv(file, sep='|')['EllapsedTime']
22     print(name, ":")
23     print(ets.describe(percentiles=[]), "\n")
24     plt.clf()
25     plt.title(name)
26     plt.hist(ets, range=[ets.min(), ets.max()], align='mid', density=False, bins=100)
27     plt.ylabel('Frequency')
28     plt.xlabel('Transaction Processing Time');
29     plt.savefig(name + '.png')
30
31 # This script is to be used in conjuction with the s3p.jmx jmeter script
32 # Please refer to the ONAP readthedocs for additional information.
33
34 stats("ControlLoop vCPE Success", "ControlLoop-vCPE-48f0c2c3-a172-4192-9ae3-052274181b6e.log")
35 stats("ControlLoop vCPE Fail", "ControlLoop-vCPE-Fail.log")
36 stats("ControlLoop vDNS Success", "ControlLoop-vDNS-6f37f56d-a87d-4b85-b6a9-cc953cf779b3.log")
37 stats("ControlLoop vDNS Fail", "ControlLoop-vDNS-Fail.log")
38 stats("ControlLoop vFirewall Success", "ControlLoop-vFirewall-d0a1dfc6-94f5-4fd4-a5b5-4630b438850a.log")