Skip to content
Merged
Changes from all commits
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
16 changes: 8 additions & 8 deletions tests/kafkatest/tests/core/automq_remote_write_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,8 @@ def test_remote_write_metrics_exporter(self):
script_path = f"/tmp/automq_remote_write_server_{int(time.time())}.py"

server_overrides = [
["automq.telemetry.exporter.uri", f"rw://?endpoint=http://localhost:{remote_write_port}/api/v1/write&auth=no_auth&maxBatchSize=1000000"],
["automq.telemetry.exporter.interval.ms", "15000"],
["s3.telemetry.metrics.exporter.uri", f"rw://?endpoint=http://localhost:{remote_write_port}/api/v1/write&auth=no_auth&maxBatchSize=1000000"],
["s3.telemetry.exporter.report.interval.ms", "15000"],
["service.name", cluster_id],
["service.instance.id", "broker-remote-write"],
]
Expand Down Expand Up @@ -251,8 +251,8 @@ def test_remote_write_with_compression(self):
script_path = f"/tmp/automq_remote_write_gzip_server_{int(time.time())}.py"

server_overrides = [
["automq.telemetry.exporter.uri", f"rw://?endpoint=http://localhost:{remote_write_port}/api/v1/write&auth=no_auth&maxBatchSize=500000&compression=gzip"],
["automq.telemetry.exporter.interval.ms", "10000"],
["s3.telemetry.metrics.exporter.uri", f"rw://?endpoint=http://localhost:{remote_write_port}/api/v1/write&auth=no_auth&maxBatchSize=500000&compression=gzip"],
["s3.telemetry.exporter.report.interval.ms", "10000"],
["service.name", cluster_id],
["service.instance.id", "broker-remote-write-gzip"],
]
Expand Down Expand Up @@ -305,8 +305,8 @@ def test_remote_write_batch_size_limits(self):

# Test with smaller batch size to ensure multiple requests
server_overrides = [
["automq.telemetry.exporter.uri", f"rw://?endpoint=http://localhost:{remote_write_port}/api/v1/write&auth=no_auth&maxBatchSize=10000"],
["automq.telemetry.exporter.interval.ms", "5000"],
["s3.telemetry.metrics.exporter.uri", f"rw://?endpoint=http://localhost:{remote_write_port}/api/v1/write&auth=no_auth&maxBatchSize=10000"],
["s3.telemetry.exporter.report.interval.ms", "5000"],
["service.name", cluster_id],
["service.instance.id", "broker-remote-write-batch"],
]
Expand Down Expand Up @@ -356,8 +356,8 @@ def test_remote_write_server_unavailable(self):
remote_write_port = 19093

server_overrides = [
["automq.telemetry.exporter.uri", f"rw://?endpoint=http://localhost:{remote_write_port}/api/v1/write&auth=no_auth&maxBatchSize=1000000"],
["automq.telemetry.exporter.interval.ms", "10000"],
["s3.telemetry.metrics.exporter.uri", f"rw://?endpoint=http://localhost:{remote_write_port}/api/v1/write&auth=no_auth&maxBatchSize=1000000"],
["s3.telemetry.exporter.report.interval.ms", "10000"],
["service.name", cluster_id],
["service.instance.id", "broker-remote-write-unavail"],
]
Expand Down
Loading