blob: 6fd9a114919d78ffa65994f1dd1ec97d791e5c07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
#!/bin/sh
## @file
# ???
#
#
# Copyright (C) 2009-2023 Oracle and/or its affiliates.
#
# This file is part of VirtualBox base platform packages, as
# available from https://www.virtualbox.org.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation, in version 3 of the
# License.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, see <https://www.gnu.org/licenses>.
#
# SPDX-License-Identifier: GPL-3.0-only
#
#change device to select NAT${NAT_STAT_DEVICE} counters
NAT_STAT_DEBUG=1
NAT_STAT_DEVICE=0
NAT_TMP=/tmp
NAT_STATS_FMT=wiki
NAT_STATS_CONVERTER=$NAT_TMP/converter.awk
NAT_STATS_COUNTERS_RAW=${NAT_TMP}/counters.out.raw
NAT_STATS_COUNTERS=${NAT_TMP}/counters.out
NAT_STATS_REPORT=NAT_STATS_NAME.${NAT_STATS_FMT}
NAT_IN_FILE=$1
[ x"$TMP" != x ] && NAT_TMP=TMP
grep NAT${NAT_STAT_DEVICE} $NAT_IN_FILE > $NAT_STATS_COUNTERS_RAW
[ $? -ne 0 ] && echo "error happens while grep'ing the NAT's counters" && exit 1
#sed -ne "s/\ */\t/gp" $NAT_STATS_COUNTERS_RAW > $NAT_STATS_COUNTERS
cp $NAT_STATS_COUNTERS_RAW $NAT_STATS_COUNTERS
cat > $NAT_STATS_CONVERTER <<EOF
BEGIN{
if (FMT == "tsv")
OFS="\t";
else if (FMT == "wiki")
OFS="</td><td>"
FS=" ";
if (FMT == "wiki")
print "<table>"
if (COUNTERS == "counting")
{
NF = 2;
\$1 = "name"
\$2 = "count"
if (FMT == "wiki")
print "<tr><td>" \$0 "</td></tr>"
else
print \$0
}
else if (COUNTERS == "profiling")
{
NF=6
\$1 = "name"
\$2 = "ticks_per_count"
\$3 = "total_ticks"
\$4 = "times"
\$5 = "max"
\$6 = "min"
if (FMT == "wiki")
print "<tr><td>" \$0 "</td></tr>"
else
print \$0
}
}
/*counting counters */
NF == 3 && COUNTERS=="counting"{
name = \$1
count = \$2
NF=2
if (FMT == "wiki")
print "<tr><td>" \$0 "</td></tr>"
else
print \$0
}
/*profiling counters */
NF == 12 && COUNTERS=="profiling"{
name = \$1
ticks_per_count = \$2
total_ticks = \$5
times = \$7
max = \$10
min = \$12
NF=6
\$1 = name
\$2 = ticks_per_count
\$3 = total_ticks
\$4 = times
\$5 = substr(max,0, index(max, ",") -1)
\$6 = substr(min,0, index(min, ")") - 1)
if (FMT == "wiki")
print "<tr><td>" \$0 "</td></tr>"
else
print \$0
}
END{
if (FMT == "wiki")
print "</table>"
}
EOF
awk -v FMT=$NAT_STATS_FMT -v COUNTERS=profiling -f $NAT_STATS_CONVERTER $NAT_STATS_COUNTERS > $NAT_STATS_REPORT
awk -v FMT=$NAT_STATS_FMT -v COUNTERS=counting -f $NAT_STATS_CONVERTER $NAT_STATS_COUNTERS >> $NAT_STATS_REPORT
|