Skip to content

Commit d69c6e7

Browse files
committed
Change default trace bucket to io-tracer/linux_v1
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Txuf9y5xrNPPoMa2f8syXd
1 parent db03831 commit d69c6e7

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

iotrc.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
--no-upload Disable automatic upload of traces
2727
2828
Dev Options (only available with 'dev' subcommand):
29-
--trace-bucket NAME Override upload bucket name (default: linux_trace_v4_test)
29+
--trace-bucket NAME Override upload bucket name (default: io-tracer/linux_v1)
3030
3131
Examples:
3232
# Run with default settings
@@ -97,7 +97,7 @@ def maximize_fd_limit():
9797
dev_parser.add_argument('--cache', action='store_true', help='Force-enable page-cache event tracing (higher overhead; otherwise auto-enabled when the host has enough CPU and DRAM)')
9898
dev_parser.add_argument('--network', action='store_true', help='Force-enable network event tracing: connection lifecycle, epoll, sockopt, drops (otherwise auto-enabled when the host has enough CPU, DRAM and network)')
9999
dev_parser.add_argument('--no-upload', action='store_true', help='Disable automatic upload of traces (for testing)')
100-
dev_parser.add_argument('--trace-bucket', type=str, default=None, help='Override upload bucket name (default: linux_trace_v4_test)')
100+
dev_parser.add_argument('--trace-bucket', type=str, default=None, help='Override upload bucket name (default: io-tracer/linux_v1)')
101101

102102
parse_args = parser.parse_args()
103103
output_dir = tempfile.gettempdir()

src/tracer/ObjectStorageManager.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ class ObjectStorageManager:
5151
_t: List of worker threads
5252
"""
5353

54-
def __init__(self, version: str = "vdev", trace_bucket: str = "linux_trace_v4_test"):
54+
def __init__(self, version: str = "vdev", trace_bucket: str = "io-tracer/linux_v1"):
5555
"""
5656
Initialize the ObjectStorageManager.
5757
5858
Args:
5959
version: Application version string (default: "vdev")
60-
trace_bucket: Storage bucket/path prefix for uploads (default: "linux_trace_v4_test")
60+
trace_bucket: Storage bucket/path prefix for uploads (default: "io-tracer/linux_v1")
6161
6262
Initializes the upload queue, counters, and prepares
6363
for automatic upload operations.

0 commit comments

Comments
 (0)