Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions benchmarks/bench/fixed_qps_latency.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
sends requests at a steady rate to measure realistic latency impact.
"""

from __future__ import annotations

import json
import os
import subprocess
Expand Down
2 changes: 2 additions & 0 deletions benchmarks/bench/realistic_workload.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
These simulate production APIs that do actual work (I/O, validation, processing).
"""

from __future__ import annotations

import json
import os
import subprocess
Expand Down
2 changes: 2 additions & 0 deletions benchmarks/bench/sdk_sampling_rates.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#!/usr/bin/env python3
"""Benchmark: SDK with different sampling rates."""

from __future__ import annotations

import os
import shutil
import sys
Expand Down