guidellm.schemas.base.request_stats
Request statistics and metrics for generative AI benchmark analysis.
Provides data structures for capturing and analyzing performance metrics from generative AI workloads. The module contains request-level statistics including token counts, latency measurements, and throughput calculations essential for evaluating text generation benchmark performance. Computed properties enable analysis of time-to-first-token, inter-token latency, and token generation rates.
GenerativeRequestStats
Bases: StandardBaseDict
Request statistics for generative AI text generation workloads.
Captures comprehensive performance metrics for individual generative requests, including token counts, timing measurements, and derived performance statistics. Provides computed properties for latency analysis, throughput calculations, and token generation metrics essential for benchmark evaluation.
Example: :: stats = GenerativeRequestStats( request_id="req_123", info=request_info, input_metrics=input_usage, output_metrics=output_usage ) throughput = stats.output_tokens_per_second
Source code in src/guidellm/schemas/base/request_stats.py
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 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 | |
avg_round_trip_time_ms property
Approximate average round-trip time in milliseconds.
Computed as the mean of received content-token timestamps minus the mean of sent-packet timestamps. This is an approximation that assumes sent packets and received tokens align uniformly in time. Only populated by the websocket backend; None otherwise.
Returns:
| Type | Description |
|---|---|
float | None | Average round-trip time in milliseconds, or None if unavailable |
cached_tokens property
Returns:
| Type | Description |
|---|---|
int | None | Number of input tokens served from the prefix cache, or None |
first_output_token_iteration property
Returns:
| Type | Description |
|---|---|
float | None | Timestamp of first token generation, or None if unavailable |
first_token_iteration property
Returns:
| Type | Description |
|---|---|
float | None | Timestamp of first token generation, or None if unavailable |
inter_token_latency_ms property
Average inter-token latency in milliseconds excluding first token.
Returns:
| Type | Description |
|---|---|
float | None | Average milliseconds between token generations, or None if unavailable |
iter_tokens_per_iteration property
Returns:
| Type | Description |
|---|---|
float | None | Average tokens per iteration excluding first token, or None if unavailable |
iter_tokens_timings property
Returns:
| Type | Description |
|---|---|
list[tuple[float, float]] | List of (timestamp, token_count) tuples for iterations excluding first token |
last_token_iteration property
Returns:
| Type | Description |
|---|---|
float | None | Timestamp of last token generation, or None if unavailable |
output_tokens property
Returns:
| Type | Description |
|---|---|
int | None | Number of tokens in the generated output, or None if unavailable |
output_tokens_per_iteration property
Returns:
| Type | Description |
|---|---|
float | None | Average output tokens per iteration, or None if unavailable |
output_tokens_per_second property
Returns:
| Type | Description |
|---|---|
float | None | Output token generation throughput, or None if unavailable |
output_tokens_timings property
Returns:
| Type | Description |
|---|---|
list[tuple[float, float]] | List of (timestamp, token_count) tuples for output token generations |
Raises:
| Type | Description |
|---|---|
ValueError | If resolve_end timings are not set |
prompt_tokens property
Returns:
| Type | Description |
|---|---|
int | None | Number of tokens in the input prompt, or None if unavailable |
prompt_tokens_timing property
Returns:
| Type | Description |
|---|---|
tuple[float, float] | Tuple of (timestamp, token_count) for prompt processing |
Raises:
| Type | Description |
|---|---|
ValueError | If resolve_end timings are not set |
request_dispatch_delay property
Delay between the scheduled arrival time and the actual dispatch in seconds.
Non-zero when the scheduler could not issue the request at the time its strategy targeted, for example while a concurrency limit is saturated. Only describes arrival-schedule delay for strategies that define an arrival schedule (constant, poisson, and trace when the dataset supplies timestamps); the synchronous, concurrent, and throughput strategies target an ASAP start instead. See the metrics guide for full caveats.
Returns:
| Type | Description |
|---|---|
float | None | Duration from targeted start to request start in seconds, or None if unavailable |
request_end_time property
Returns:
| Type | Description |
|---|---|
float | Timestamp when the request ended, or None if unavailable |
request_latency property
End-to-end request processing latency in seconds.
Returns:
| Type | Description |
|---|---|
float | None | Duration from request start to completion, or None if unavailable |
request_scheduled_latency property
Request latency measured from the scheduled arrival time in seconds.
Unlike :attr:request_latency, which starts when the request was dispatched, this includes any time the request waited for the scheduler to reach it. The two are equal when the scheduler keeps up with the configured rate and diverge once it falls behind. Carries the same strategy caveat as :attr:request_dispatch_delay.
Returns:
| Type | Description |
|---|---|
float | None | Duration from targeted start to request completion in seconds, or None if unavailable |
request_start_time property
Returns:
| Type | Description |
|---|---|
float | None | Timestamp when the request started, or None if unavailable |
time_per_output_token_ms property
Average time per output token in milliseconds including first token.
Returns:
| Type | Description |
|---|---|
float | None | Average milliseconds per output token, or None if unavailable |
time_to_first_output_token_ms property
Time to first content (non-reasoning) token in milliseconds.
When no reasoning tokens are emitted this equals TTFT.
Returns:
| Type | Description |
|---|---|
float | None | Milliseconds from request start to first content token, or None if unavailable |
time_to_first_token_ms property
Returns:
| Type | Description |
|---|---|
float | None | Time to first token generation in milliseconds, or None if unavailable |
time_to_last_round_trip_ms property
Time from the last sent packet to the last received token in milliseconds.
Only populated by the websocket backend, which records send timestamps; None for backends that do not record sends.
Returns:
| Type | Description |
|---|---|
float | None | Last round-trip latency in milliseconds, or None if unavailable |
token_iterations property
Returns:
| Type | Description |
|---|---|
int | Total number of token generation iterations |
tokens_per_second property
Returns:
| Type | Description |
|---|---|
float | None | Total tokens per second throughput, or None if unavailable |
total_tokens property
Returns:
| Type | Description |
|---|---|
int | None | Sum of prompt and output tokens, or None if both unavailable |
total_tokens_timings property
Returns:
| Type | Description |
|---|---|
list[tuple[float, float]] | List of (timestamp, token_count) tuples for all token generations |