You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: schema.json
+76-2Lines changed: 76 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -107,6 +107,57 @@
107
107
"p99.99"
108
108
]
109
109
},
110
+
"firstByteHistogram": {
111
+
"description": "The histogram of first byte time in seconds. The key is the first byte time in seconds and the value is the number of requests",
112
+
"type": "object",
113
+
"additionalProperties": {
114
+
"type": "integer"
115
+
}
116
+
},
117
+
"firstBytePercentiles": {
118
+
"description": "The first byte percentiles in seconds",
119
+
"type": "object",
120
+
"properties": {
121
+
"p10": {
122
+
"type": "number"
123
+
},
124
+
"p25": {
125
+
"type": "number"
126
+
},
127
+
"p50": {
128
+
"type": "number"
129
+
},
130
+
"p75": {
131
+
"type": "number"
132
+
},
133
+
"p90": {
134
+
"type": "number"
135
+
},
136
+
"p95": {
137
+
"type": "number"
138
+
},
139
+
"p99": {
140
+
"type": "number"
141
+
},
142
+
"p99.9": {
143
+
"type": "number"
144
+
},
145
+
"p99.99": {
146
+
"type": "number"
147
+
}
148
+
},
149
+
"required": [
150
+
"p10",
151
+
"p25",
152
+
"p50",
153
+
"p75",
154
+
"p90",
155
+
"p95",
156
+
"p99",
157
+
"p99.9",
158
+
"p99.99"
159
+
]
160
+
},
110
161
"responseTimeHistogramSuccessful": {
111
162
"description": "Only present if `--stats-success-breakdown` argument is passed. The histogram of response time in seconds for successful requests. The key is the response time in seconds and the value is the number of requests",
112
163
"type": "object",
@@ -323,11 +374,32 @@
323
374
"fastest",
324
375
"slowest"
325
376
]
377
+
},
378
+
"firstByte": {
379
+
"description": "The time to first byte in seconds",
0 commit comments