@@ -20,25 +20,28 @@ public void MemtierMetricsParserParsesTheExpectedMetricsFromMemtierResultsCorrec
20
20
{
21
21
List < string > resultsList = new List < string > ( ) ;
22
22
string results = File . ReadAllText ( Path . Combine ( MockFixture . ExamplesDirectory , @"Memtier\MemcachedResults_1.txt" ) ) ;
23
+ string results1 = File . ReadAllText ( Path . Combine ( MockFixture . ExamplesDirectory , @"Memtier\MemcachedResults_2.txt" ) ) ;
23
24
resultsList . Add ( results ) ;
25
+ resultsList . Add ( results1 ) ;
24
26
var parser = new MemtierMetricsParser ( false , resultsList ) ;
25
27
26
28
IList < Metric > metrics = parser . Parse ( ) ;
27
29
28
30
Assert . AreEqual ( 138 , metrics . Count ) ;
29
- MetricAssert . Exists ( metrics , "Throughput_Avg" , 48271.29 , MetricUnit . RequestsPerSec ) ;
30
- MetricAssert . Exists ( metrics , "Throughput_Min" , 48271.29 , MetricUnit . RequestsPerSec ) ;
31
+
32
+ MetricAssert . Exists ( metrics , "Throughput_Avg" , 48156.565 , MetricUnit . RequestsPerSec ) ;
33
+ MetricAssert . Exists ( metrics , "Throughput_Min" , 48041.840000000004 , MetricUnit . RequestsPerSec ) ;
31
34
MetricAssert . Exists ( metrics , "Throughput_Max" , 48271.29 , MetricUnit . RequestsPerSec ) ;
32
- MetricAssert . Exists ( metrics , "Throughput_Stdev" , 0 , MetricUnit . RequestsPerSec ) ;
35
+ MetricAssert . Exists ( metrics , "Throughput_Stdev" , 114.72499999999854 , MetricUnit . RequestsPerSec ) ;
33
36
MetricAssert . Exists ( metrics , "Throughput_P80" , 48271.29 , MetricUnit . RequestsPerSec ) ;
34
- MetricAssert . Exists ( metrics , "Throughput_Sum" , 48271.29 , MetricUnit . RequestsPerSec ) ;
37
+ MetricAssert . Exists ( metrics , "Throughput_Sum" , 96313.13 , MetricUnit . RequestsPerSec ) ;
35
38
36
- MetricAssert . Exists ( metrics , "Hits/sec_Avg" , 43444.12 ) ;
37
- MetricAssert . Exists ( metrics , "Hits/sec_Min" , 43444.12 ) ;
39
+ MetricAssert . Exists ( metrics , "Hits/sec_Avg" , 43340.87125 ) ;
40
+ MetricAssert . Exists ( metrics , "Hits/sec_Min" , 43237.6225 ) ;
38
41
MetricAssert . Exists ( metrics , "Hits/sec_Max" , 43444.12 ) ;
39
- MetricAssert . Exists ( metrics , "Hits/sec_Stdev" , 0 ) ;
42
+ MetricAssert . Exists ( metrics , "Hits/sec_Stdev" , 103.24875000000247 ) ;
40
43
MetricAssert . Exists ( metrics , "Hits/sec_P80" , 43444.12 ) ;
41
- MetricAssert . Exists ( metrics , "Hits/sec_Sum" , 43444.12 ) ;
44
+ MetricAssert . Exists ( metrics , "Hits/sec_Sum" , 86681.7425 ) ;
42
45
43
46
MetricAssert . Exists ( metrics , "Misses/sec_Avg" , 0 ) ;
44
47
MetricAssert . Exists ( metrics , "Misses/sec_Min" , 0 ) ;
@@ -47,102 +50,100 @@ public void MemtierMetricsParserParsesTheExpectedMetricsFromMemtierResultsCorrec
47
50
MetricAssert . Exists ( metrics , "Misses/sec_P80" , 0 ) ;
48
51
MetricAssert . Exists ( metrics , "Misses/sec_Sum" , 0 ) ;
49
52
50
- MetricAssert . Exists ( metrics , "Latency-Avg_Avg" , 2.62213 , MetricUnit . Milliseconds ) ;
53
+ MetricAssert . Exists ( metrics , "Latency-Avg_Avg" , 2.6292524999999998 , MetricUnit . Milliseconds ) ;
51
54
MetricAssert . Exists ( metrics , "Latency-Avg_Min" , 2.62213 , MetricUnit . Milliseconds ) ;
52
- MetricAssert . Exists ( metrics , "Latency-Avg_Max" , 2.62213 , MetricUnit . Milliseconds ) ;
53
- MetricAssert . Exists ( metrics , "Latency-Avg_Stdev" , 0 , MetricUnit . Milliseconds ) ;
54
- MetricAssert . Exists ( metrics , "Latency-Avg_P80" , 2.62213 , MetricUnit . Milliseconds ) ;
55
-
56
- MetricAssert . Exists ( metrics , "Latency-P50_Avg" , 2.75100 , MetricUnit . Milliseconds ) ;
57
- MetricAssert . Exists ( metrics , "Latency-P50_Min" , 2.75100 , MetricUnit . Milliseconds ) ;
58
- MetricAssert . Exists ( metrics , "Latency-P50_Max" , 2.75100 , MetricUnit . Milliseconds ) ;
59
- MetricAssert . Exists ( metrics , "Latency-P50_Stdev" , 0 , MetricUnit . Milliseconds ) ;
60
- MetricAssert . Exists ( metrics , "Latency-P50_P80" , 2.75100 , MetricUnit . Milliseconds ) ;
61
-
62
-
63
- MetricAssert . Exists ( metrics , "Latency-P90_Avg" , 3.90300 , MetricUnit . Milliseconds ) ;
64
- MetricAssert . Exists ( metrics , "Latency-P90_Min" , 3.90300 , MetricUnit . Milliseconds ) ;
65
- MetricAssert . Exists ( metrics , "Latency-P90_Max" , 3.90300 , MetricUnit . Milliseconds ) ;
66
- MetricAssert . Exists ( metrics , "Latency-P90_Stdev" , 0 , MetricUnit . Milliseconds ) ;
67
- MetricAssert . Exists ( metrics , "Latency-P90_P80" , 3.90300 , MetricUnit . Milliseconds ) ;
68
-
69
- MetricAssert . Exists ( metrics , "Latency-P95_Avg" , 4.41500 , MetricUnit . Milliseconds ) ;
70
- MetricAssert . Exists ( metrics , "Latency-P95_Min" , 4.41500 , MetricUnit . Milliseconds ) ;
71
- MetricAssert . Exists ( metrics , "Latency-P95_Max" , 4.41500 , MetricUnit . Milliseconds ) ;
72
- MetricAssert . Exists ( metrics , "Latency-P95_Stdev" , 0 , MetricUnit . Milliseconds ) ;
73
- MetricAssert . Exists ( metrics , "Latency-P95_P80" , 4.41500 , MetricUnit . Milliseconds ) ;
55
+ MetricAssert . Exists ( metrics , "Latency-Avg_Max" , 2.636375 , MetricUnit . Milliseconds ) ;
56
+ MetricAssert . Exists ( metrics , "Latency-Avg_Stdev" , 0.007122500000000143 , MetricUnit . Milliseconds ) ;
57
+ MetricAssert . Exists ( metrics , "Latency-Avg_P80" , 2.636375 , MetricUnit . Milliseconds ) ;
58
+
59
+ MetricAssert . Exists ( metrics , "Latency-P50_Avg" , 2.7569999999999997 , MetricUnit . Milliseconds ) ;
60
+ MetricAssert . Exists ( metrics , "Latency-P50_Min" , 2.751 , MetricUnit . Milliseconds ) ;
61
+ MetricAssert . Exists ( metrics , "Latency-P50_Max" , 2.763 , MetricUnit . Milliseconds ) ;
62
+ MetricAssert . Exists ( metrics , "Latency-P50_Stdev" , 0.006000000000000005 , MetricUnit . Milliseconds ) ;
63
+ MetricAssert . Exists ( metrics , "Latency-P50_P80" , 2.763 , MetricUnit . Milliseconds ) ;
64
+
65
+ MetricAssert . Exists ( metrics , "Latency-P90_Avg" , 3.917 , MetricUnit . Milliseconds ) ;
66
+ MetricAssert . Exists ( metrics , "Latency-P90_Min" , 3.903 , MetricUnit . Milliseconds ) ;
67
+ MetricAssert . Exists ( metrics , "Latency-P90_Max" , 3.931 , MetricUnit . Milliseconds ) ;
68
+ MetricAssert . Exists ( metrics , "Latency-P90_Stdev" , 0.014000000000000012 , MetricUnit . Milliseconds ) ;
69
+ MetricAssert . Exists ( metrics , "Latency-P90_P80" , 3.931 , MetricUnit . Milliseconds ) ;
70
+
71
+ MetricAssert . Exists ( metrics , "Latency-P95_Avg" , 4.427 , MetricUnit . Milliseconds ) ;
72
+ MetricAssert . Exists ( metrics , "Latency-P95_Min" , 4.415 , MetricUnit . Milliseconds ) ;
73
+ MetricAssert . Exists ( metrics , "Latency-P95_Max" , 4.439 , MetricUnit . Milliseconds ) ;
74
+ MetricAssert . Exists ( metrics , "Latency-P95_Stdev" , 0.01200000000000001 , MetricUnit . Milliseconds ) ;
75
+ MetricAssert . Exists ( metrics , "Latency-P95_P80" , 4.439 , MetricUnit . Milliseconds ) ;
74
76
75
- MetricAssert . Exists ( metrics , "Latency-P99_Avg" , 7.42300 , MetricUnit . Milliseconds ) ;
76
- MetricAssert . Exists ( metrics , "Latency-P99_Min" , 7.42300 , MetricUnit . Milliseconds ) ;
77
- MetricAssert . Exists ( metrics , "Latency-P99_Max" , 7.42300 , MetricUnit . Milliseconds ) ;
77
+ MetricAssert . Exists ( metrics , "Latency-P99_Avg" , 7.423 , MetricUnit . Milliseconds ) ;
78
+ MetricAssert . Exists ( metrics , "Latency-P99_Min" , 7.423 , MetricUnit . Milliseconds ) ;
79
+ MetricAssert . Exists ( metrics , "Latency-P99_Max" , 7.423 , MetricUnit . Milliseconds ) ;
78
80
MetricAssert . Exists ( metrics , "Latency-P99_Stdev" , 0 , MetricUnit . Milliseconds ) ;
79
- MetricAssert . Exists ( metrics , "Latency-P99_P80" , 7.42300 , MetricUnit . Milliseconds ) ;
81
+ MetricAssert . Exists ( metrics , "Latency-P99_P80" , 7.423 , MetricUnit . Milliseconds ) ;
80
82
81
- MetricAssert . Exists ( metrics , "Latency-P99.9_Avg" , 29.31100 , MetricUnit . Milliseconds ) ;
82
- MetricAssert . Exists ( metrics , "Latency-P99.9_Min" , 29.31100 , MetricUnit . Milliseconds ) ;
83
- MetricAssert . Exists ( metrics , "Latency-P99.9_Max" , 29.31100 , MetricUnit . Milliseconds ) ;
84
- MetricAssert . Exists ( metrics , "Latency-P99.9_Stdev" , 0 , MetricUnit . Milliseconds ) ;
85
- MetricAssert . Exists ( metrics , "Latency-P99.9_P80" , 29.31100 , MetricUnit . Milliseconds ) ;
83
+ MetricAssert . Exists ( metrics , "Latency-P99.9_Avg" , 29.294999999999998 , MetricUnit . Milliseconds ) ;
84
+ MetricAssert . Exists ( metrics , "Latency-P99.9_Min" , 29.278999999999996 , MetricUnit . Milliseconds ) ;
85
+ MetricAssert . Exists ( metrics , "Latency-P99.9_Max" , 29.311 , MetricUnit . Milliseconds ) ;
86
+ MetricAssert . Exists ( metrics , "Latency-P99.9_Stdev" , 0.01600000000000179 , MetricUnit . Milliseconds ) ;
87
+ MetricAssert . Exists ( metrics , "Latency-P99.9_P80" , 29.311 , MetricUnit . Milliseconds ) ;
86
88
87
- MetricAssert . Exists ( metrics , "GET_Throughput_Avg" , 43444.12 , MetricUnit . RequestsPerSec ) ;
88
- MetricAssert . Exists ( metrics , "GET_Throughput_Min" , 43444.12 , MetricUnit . RequestsPerSec ) ;
89
+ MetricAssert . Exists ( metrics , "GET_Throughput_Avg" , 43340.87125 , MetricUnit . RequestsPerSec ) ;
90
+ MetricAssert . Exists ( metrics , "GET_Throughput_Min" , 43237.6225 , MetricUnit . RequestsPerSec ) ;
89
91
MetricAssert . Exists ( metrics , "GET_Throughput_Max" , 43444.12 , MetricUnit . RequestsPerSec ) ;
90
- MetricAssert . Exists ( metrics , "GET_Throughput_Stdev" , 0 , MetricUnit . RequestsPerSec ) ;
92
+ MetricAssert . Exists ( metrics , "GET_Throughput_Stdev" , 103.24875000000247 , MetricUnit . RequestsPerSec ) ;
91
93
MetricAssert . Exists ( metrics , "GET_Throughput_P80" , 43444.12 , MetricUnit . RequestsPerSec ) ;
92
- MetricAssert . Exists ( metrics , "GET_Throughput_Sum" , 43444.12 , MetricUnit . RequestsPerSec ) ;
94
+ MetricAssert . Exists ( metrics , "GET_Throughput_Sum" , 86681.7425 , MetricUnit . RequestsPerSec ) ;
93
95
94
- MetricAssert . Exists ( metrics , "GET_Bandwidth_Avg" , 3724.01 , MetricUnit . KilobytesPerSecond ) ;
95
- MetricAssert . Exists ( metrics , "GET_Bandwidth_Min" , 3724.01 , MetricUnit . KilobytesPerSecond ) ;
96
+ MetricAssert . Exists ( metrics , "GET_Bandwidth_Avg" , 3715.16 , MetricUnit . KilobytesPerSecond ) ;
97
+ MetricAssert . Exists ( metrics , "GET_Bandwidth_Min" , 3706.31 , MetricUnit . KilobytesPerSecond ) ;
96
98
MetricAssert . Exists ( metrics , "GET_Bandwidth_Max" , 3724.01 , MetricUnit . KilobytesPerSecond ) ;
97
- MetricAssert . Exists ( metrics , "GET_Bandwidth_Stdev" , 0 , MetricUnit . KilobytesPerSecond ) ;
99
+ MetricAssert . Exists ( metrics , "GET_Bandwidth_Stdev" , 8.850000000000136 , MetricUnit . KilobytesPerSecond ) ;
98
100
MetricAssert . Exists ( metrics , "GET_Bandwidth_P80" , 3724.01 , MetricUnit . KilobytesPerSecond ) ;
99
- MetricAssert . Exists ( metrics , "GET_Bandwidth_Sum" , 3724.01 , MetricUnit . KilobytesPerSecond ) ;
101
+ MetricAssert . Exists ( metrics , "GET_Bandwidth_Sum" , 7430.32 , MetricUnit . KilobytesPerSecond ) ;
100
102
101
- MetricAssert . Exists ( metrics , "GET_Latency-Avg_Avg" , 2.61979 , MetricUnit . Milliseconds ) ;
103
+ MetricAssert . Exists ( metrics , "GET_Latency-Avg_Avg" , 2.62682875 , MetricUnit . Milliseconds ) ;
102
104
MetricAssert . Exists ( metrics , "GET_Latency-Avg_Min" , 2.61979 , MetricUnit . Milliseconds ) ;
103
- MetricAssert . Exists ( metrics , "GET_Latency-Avg_Max" , 2.61979 , MetricUnit . Milliseconds ) ;
104
- MetricAssert . Exists ( metrics , "GET_Latency-Avg_Stdev" , 0 , MetricUnit . Milliseconds ) ;
105
- MetricAssert . Exists ( metrics , "GET_Latency-Avg_P80" , 2.61979 , MetricUnit . Milliseconds ) ;
106
-
107
- MetricAssert . Exists ( metrics , "GET_Latency-P50_Avg" , 2.73500 , MetricUnit . Milliseconds ) ;
108
- MetricAssert . Exists ( metrics , "GET_Latency-P50_Min" , 2.73500 , MetricUnit . Milliseconds ) ;
109
- MetricAssert . Exists ( metrics , "GET_Latency-P50_Max" , 2.73500 , MetricUnit . Milliseconds ) ;
110
- MetricAssert . Exists ( metrics , "GET_Latency-P50_Stdev" , 0 , MetricUnit . Milliseconds ) ;
111
- MetricAssert . Exists ( metrics , "GET_Latency-P50_P80" , 2.73500 , MetricUnit . Milliseconds ) ;
112
-
113
- MetricAssert . Exists ( metrics , "GET_Latency-P90_Avg" , 3.88700 , MetricUnit . Milliseconds ) ;
114
- MetricAssert . Exists ( metrics , "GET_Latency-P90_Min" , 3.88700 , MetricUnit . Milliseconds ) ;
115
- MetricAssert . Exists ( metrics , "GET_Latency-P90_Max" , 3.88700 , MetricUnit . Milliseconds ) ;
116
- MetricAssert . Exists ( metrics , "GET_Latency-P90_Stdev" , 0 , MetricUnit . Milliseconds ) ;
117
- MetricAssert . Exists ( metrics , "GET_Latency-P90_P80" , 3.88700 , MetricUnit . Milliseconds ) ;
118
-
119
- MetricAssert . Exists ( metrics , "GET_Latency-P95_Avg" , 4.41500 , MetricUnit . Milliseconds ) ;
120
- MetricAssert . Exists ( metrics , "GET_Latency-P95_Min" , 4.41500 , MetricUnit . Milliseconds ) ;
121
- MetricAssert . Exists ( metrics , "GET_Latency-P95_Max" , 4.41500 , MetricUnit . Milliseconds ) ;
122
- MetricAssert . Exists ( metrics , "GET_Latency-P95_Stdev" , 0 , MetricUnit . Milliseconds ) ;
123
- MetricAssert . Exists ( metrics , "GET_Latency-P95_P80" , 4.41500 , MetricUnit . Milliseconds ) ;
124
-
125
- MetricAssert . Exists ( metrics , "GET_Latency-P99_Avg" , 7.42300 , MetricUnit . Milliseconds ) ;
126
- MetricAssert . Exists ( metrics , "GET_Latency-P99_Min" , 7.42300 , MetricUnit . Milliseconds ) ;
127
- MetricAssert . Exists ( metrics , "GET_Latency-P99_Max" , 7.42300 , MetricUnit . Milliseconds ) ;
128
- MetricAssert . Exists ( metrics , "GET_Latency-P99_Stdev" , 0 , MetricUnit . Milliseconds ) ;
129
- MetricAssert . Exists ( metrics , "GET_Latency-P99_P80" , 7.42300 , MetricUnit . Milliseconds ) ;
130
-
131
- MetricAssert . Exists ( metrics , "GET_Latency-P99.9_Avg" , 29.31100 , MetricUnit . Milliseconds ) ;
132
- MetricAssert . Exists ( metrics , "GET_Latency-P99.9_Min" , 29.31100 , MetricUnit . Milliseconds ) ;
133
- MetricAssert . Exists ( metrics , "GET_Latency-P99.9_Max" , 29.31100 , MetricUnit . Milliseconds ) ;
134
- MetricAssert . Exists ( metrics , "GET_Latency-P99.9_Stdev" , 0 , MetricUnit . Milliseconds ) ;
135
- MetricAssert . Exists ( metrics , "GET_Latency-P99.9_P80" , 29.31100 , MetricUnit . Milliseconds ) ;
136
-
137
-
138
- MetricAssert . Exists ( metrics , "SET_Throughput_Avg" , 4827.17 , MetricUnit . RequestsPerSec ) ;
139
- MetricAssert . Exists ( metrics , "SET_Bandwidth_Avg" , 329.45 , MetricUnit . KilobytesPerSecond ) ;
140
- MetricAssert . Exists ( metrics , "SET_Latency-Avg_Avg" , 2.64323 , MetricUnit . Milliseconds ) ;
141
- MetricAssert . Exists ( metrics , "SET_Latency-P50_Avg" , 2.83100 , MetricUnit . Milliseconds ) ;
142
- MetricAssert . Exists ( metrics , "SET_Latency-P90_Avg" , 3.93500 , MetricUnit . Milliseconds ) ;
143
- MetricAssert . Exists ( metrics , "SET_Latency-P95_Avg" , 4.47900 , MetricUnit . Milliseconds ) ;
144
- MetricAssert . Exists ( metrics , "SET_Latency-P99_Avg" , 7.45500 , MetricUnit . Milliseconds ) ;
145
- MetricAssert . Exists ( metrics , "SET_Latency-P99.9_Avg" , 29.56700 , MetricUnit . Milliseconds ) ;
105
+ MetricAssert . Exists ( metrics , "GET_Latency-Avg_Max" , 2.6338675 , MetricUnit . Milliseconds ) ;
106
+ MetricAssert . Exists ( metrics , "GET_Latency-Avg_Stdev" , 0.0070387499999999825 , MetricUnit . Milliseconds ) ;
107
+ MetricAssert . Exists ( metrics , "GET_Latency-Avg_P80" , 2.6338675 , MetricUnit . Milliseconds ) ;
108
+
109
+ MetricAssert . Exists ( metrics , "GET_Latency-P50_Avg" , 2.747 , MetricUnit . Milliseconds ) ;
110
+ MetricAssert . Exists ( metrics , "GET_Latency-P50_Min" , 2.735 , MetricUnit . Milliseconds ) ;
111
+ MetricAssert . Exists ( metrics , "GET_Latency-P50_Max" , 2.759 , MetricUnit . Milliseconds ) ;
112
+ MetricAssert . Exists ( metrics , "GET_Latency-P50_Stdev" , 0.01200000000000001 , MetricUnit . Milliseconds ) ;
113
+ MetricAssert . Exists ( metrics , "GET_Latency-P50_P80" , 2.759 , MetricUnit . Milliseconds ) ;
114
+
115
+ MetricAssert . Exists ( metrics , "GET_Latency-P90_Avg" , 3.903 , MetricUnit . Milliseconds ) ;
116
+ MetricAssert . Exists ( metrics , "GET_Latency-P90_Min" , 3.887 , MetricUnit . Milliseconds ) ;
117
+ MetricAssert . Exists ( metrics , "GET_Latency-P90_Max" , 3.919 , MetricUnit . Milliseconds ) ;
118
+ MetricAssert . Exists ( metrics , "GET_Latency-P90_Stdev" , 0.016000000000000014 , MetricUnit . Milliseconds ) ;
119
+ MetricAssert . Exists ( metrics , "GET_Latency-P90_P80" , 3.919 , MetricUnit . Milliseconds ) ;
120
+
121
+ MetricAssert . Exists ( metrics , "GET_Latency-P95_Avg" , 4.427 , MetricUnit . Milliseconds ) ;
122
+ MetricAssert . Exists ( metrics , "GET_Latency-P95_Min" , 4.415 , MetricUnit . Milliseconds ) ;
123
+ MetricAssert . Exists ( metrics , "GET_Latency-P95_Max" , 4.439 , MetricUnit . Milliseconds ) ;
124
+ MetricAssert . Exists ( metrics , "GET_Latency-P95_Stdev" , 0.01200000000000001 , MetricUnit . Milliseconds ) ;
125
+ MetricAssert . Exists ( metrics , "GET_Latency-P95_P80" , 4.439 , MetricUnit . Milliseconds ) ;
126
+
127
+ MetricAssert . Exists ( metrics , "GET_Latency-P99_Avg" , 7.419 , MetricUnit . Milliseconds ) ;
128
+ MetricAssert . Exists ( metrics , "GET_Latency-P99_Min" , 7.414999999999999 , MetricUnit . Milliseconds ) ;
129
+ MetricAssert . Exists ( metrics , "GET_Latency-P99_Max" , 7.423 , MetricUnit . Milliseconds ) ;
130
+ MetricAssert . Exists ( metrics , "GET_Latency-P99_Stdev" , 0.004000000000000448 , MetricUnit . Milliseconds ) ;
131
+ MetricAssert . Exists ( metrics , "GET_Latency-P99_P80" , 7.423 , MetricUnit . Milliseconds ) ;
132
+
133
+ MetricAssert . Exists ( metrics , "GET_Latency-P99.9_Avg" , 29.262999999999998 , MetricUnit . Milliseconds ) ;
134
+ MetricAssert . Exists ( metrics , "GET_Latency-P99.9_Min" , 29.214999999999996 , MetricUnit . Milliseconds ) ;
135
+ MetricAssert . Exists ( metrics , "GET_Latency-P99.9_Max" , 29.311 , MetricUnit . Milliseconds ) ;
136
+ MetricAssert . Exists ( metrics , "GET_Latency-P99.9_Stdev" , 0.04800000000000182 , MetricUnit . Milliseconds ) ;
137
+ MetricAssert . Exists ( metrics , "GET_Latency-P99.9_P80" , 29.311 , MetricUnit . Milliseconds ) ;
138
+
139
+ MetricAssert . Exists ( metrics , "SET_Throughput_Avg" , 4815.69375 , MetricUnit . RequestsPerSec ) ;
140
+ MetricAssert . Exists ( metrics , "SET_Bandwidth_Avg" , 328.6675 , MetricUnit . KilobytesPerSecond ) ;
141
+ MetricAssert . Exists ( metrics , "SET_Latency-Avg_Avg" , 2.65108125 , MetricUnit . Milliseconds ) ;
142
+ MetricAssert . Exists ( metrics , "SET_Latency-P50_Avg" , 2.831 , MetricUnit . Milliseconds ) ;
143
+ MetricAssert . Exists ( metrics , "SET_Latency-P90_Avg" , 3.947 , MetricUnit . Milliseconds ) ;
144
+ MetricAssert . Exists ( metrics , "SET_Latency-P95_Avg" , 4.487 , MetricUnit . Milliseconds ) ;
145
+ MetricAssert . Exists ( metrics , "SET_Latency-P99_Avg" , 7.503 , MetricUnit . Milliseconds ) ;
146
+ MetricAssert . Exists ( metrics , "SET_Latency-P99.9_Avg" , 29.583 , MetricUnit . Milliseconds ) ;
146
147
}
147
148
148
149
[ Test ]
0 commit comments