Skip to content

Instantly share code, notes, and snippets.

@nateberkopec
Created March 3, 2026 00:38
Show Gist options
  • Select an option

  • Save nateberkopec/6a461db7c673a4702f8e696b3d15ecd8 to your computer and use it in GitHub Desktop.

Select an option

Save nateberkopec/6a461db7c673a4702f8e696b3d15ecd8 to your computer and use it in GitHub Desktop.
Puma worker TERM/restart benchmark (Docker + k6): app, scripts, final artifacts, and results summary

Worker TERM/restart benchmark (Docker + k6)

This benchmark reproduces the scenario discussed in chat:

  • 4 Puma workers
  • open-model traffic at 12 req/s (k6 constant-arrival-rate)
  • synthetic Rack app with ~250ms service time
  • service alternates CPU and IO slices randomly every ~10ms
  • compare threads=5 vs threads=25
  • during traffic: kill one worker, wait for restart, let it serve ~5s, then kill a different worker (round-robin)

Files

  • app.ru - synthetic 50/50 CPU/IO Rack app
  • puma.rb - Puma config (WEB_CONCURRENCY=4, thread count via env)
  • docker-compose.yml - Puma + k6 services (defaults to 4 CPUs/container)
  • k6/open_traffic.js - k6 open-model load generator
  • run.fish - runs both thread scenarios and performs TERM/restart loop

Run

cd benchmarks/docker/term-capacity
# optional override, defaults to 4 CPUs per container
set -x CONTAINER_CPUS 4
./run.fish

Results are written under:

benchmarks/docker/term-capacity/results/<timestamp>/

Each scenario folder (threads-5, threads-25) includes:

  • k6-summary.json
  • k6-metrics.json
  • puma-stats.ndjson (control server snapshots each second)
  • kill-events.ndjson (every TERM + observed restart)
  • kill-summary.txt (counts: terms, restarts, timeouts, boot lines)
  • puma.log
# frozen_string_literal: true
require 'json'
require 'time'
def summarize(values)
return { count: 0 } if values.empty?
sorted = values.sort
{
count: sorted.length,
avg: sorted.sum / sorted.length,
p50: percentile(sorted, 50),
p95: percentile(sorted, 95),
max: sorted[-1]
}
end
def percentile(sorted_values, percentile_rank)
rank = (percentile_rank / 100.0) * (sorted_values.length - 1)
lower = rank.floor
upper = rank.ceil
return sorted_values[lower] if lower == upper
weight = rank - lower
sorted_values[lower] + ((sorted_values[upper] - sorted_values[lower]) * weight)
end
def seconds_between(iso_ts, event_time)
Time.iso8601(iso_ts).to_f - event_time
end
def load_k6_points(path)
metrics = Hash.new { |hash, key| hash[key] = [] }
File.foreach(path) do |line|
next if line.strip.empty?
row = JSON.parse(line)
next unless row['type'] == 'Point'
metric = row['metric']
value = row.dig('data', 'value')
time = row.dig('data', 'time')
next unless metric && value && time
metrics[metric] << [time, value.to_f]
end
metrics
end
def load_stats(path)
samples = []
File.foreach(path) do |line|
next if line.strip.empty?
row = JSON.parse(line)
stats = row['stats']
worker_status = stats['worker_status'] || []
backlog = worker_status.sum { |w| w.dig('last_status', 'backlog').to_i }
running = worker_status.sum { |w| w.dig('last_status', 'running').to_i }
pool_capacity = worker_status.sum { |w| w.dig('last_status', 'pool_capacity').to_i }
samples << {
time: row['ts'],
backlog: backlog,
running: running,
pool_capacity: pool_capacity,
workers: worker_status.length
}
end
samples
end
def split_metric(points, event_time, before_window:, after_window:)
before = []
after = []
points.each do |iso_time, value|
delta = seconds_between(iso_time, event_time)
before << value if delta >= -before_window && delta < 0
after << value if delta >= 0 && delta <= after_window
end
[before, after]
end
def split_stats(samples, event_time, before_window:, after_window:)
before = []
after = []
samples.each do |sample|
delta = seconds_between(sample[:time], event_time)
before << sample if delta >= -before_window && delta < 0
after << sample if delta >= 0 && delta <= after_window
end
[before, after]
end
def stats_summary(samples, key)
summarize(samples.map { |sample| sample[key] })
end
def format_summary(label, summary, unit = 'ms')
return "- #{label}: no data" if summary[:count].zero?
"- #{label}: n=#{summary[:count]}, avg=#{format('%.2f', summary[:avg])}#{unit}, p50=#{format('%.2f', summary[:p50])}#{unit}, p95=#{format('%.2f', summary[:p95])}#{unit}, max=#{format('%.2f', summary[:max])}#{unit}"
end
if ARGV.length != 4
warn "Usage: ruby analyze.rb <k6_metrics.json> <puma_stats.ndjson> <event_iso8601> <output.md>"
exit 1
end
k6_path, stats_path, event_iso8601, output_path = ARGV
event_time = Time.iso8601(event_iso8601).to_f
before_window = 20
after_window = 20
metrics = load_k6_points(k6_path)
stats = load_stats(stats_path)
http_before, http_after = split_metric(metrics.fetch('http_req_duration', []), event_time, before_window:, after_window:)
waiting_before, waiting_after = split_metric(metrics.fetch('http_req_waiting', []), event_time, before_window:, after_window:)
queue_before, queue_after = split_metric(metrics.fetch('queue_time_ms', []), event_time, before_window:, after_window:)
service_before, service_after = split_metric(metrics.fetch('service_time_ms', []), event_time, before_window:, after_window:)
stats_before, stats_after = split_stats(stats, event_time, before_window:, after_window:)
report = <<~REPORT
## Event window analysis
- TERM sent at: #{event_iso8601}
- Before window: #{before_window}s before TERM
- After window: #{after_window}s after TERM
### Request duration (`http_req_duration`)
#{format_summary('before', summarize(http_before))}
#{format_summary('after', summarize(http_after))}
### Waiting time (`http_req_waiting`)
#{format_summary('before', summarize(waiting_before))}
#{format_summary('after', summarize(waiting_after))}
### Estimated queue time (`queue_time_ms = duration - service_time`)
#{format_summary('before', summarize(queue_before))}
#{format_summary('after', summarize(queue_after))}
### Service time from app header (`service_time_ms`)
#{format_summary('before', summarize(service_before))}
#{format_summary('after', summarize(service_after))}
### Puma aggregate backlog (sum across workers)
#{format_summary('before', stats_summary(stats_before, :backlog), '')}
#{format_summary('after', stats_summary(stats_after, :backlog), '')}
### Puma aggregate running threads (sum across workers)
#{format_summary('before', stats_summary(stats_before, :running), '')}
#{format_summary('after', stats_summary(stats_after, :running), '')}
### Puma aggregate pool capacity (sum across workers)
#{format_summary('before', stats_summary(stats_before, :pool_capacity), '')}
#{format_summary('after', stats_summary(stats_after, :pool_capacity), '')}
REPORT
File.write(output_path, report)
puts report
# frozen_string_literal: true
require 'json'
CLOCK = Process::CLOCK_MONOTONIC
TARGET_SERVICE_SECONDS = 0.250
SLICE_MIN_SECONDS = 0.006
SLICE_MAX_SECONDS = 0.014
def busy_spin(duration_seconds)
deadline = Process.clock_gettime(CLOCK) + duration_seconds
value = 1.0
while Process.clock_gettime(CLOCK) < deadline
value = Math.sqrt(value + 1.000001)
end
value
end
run lambda { |env|
path = env['PATH_INFO']
if path == '/health'
next [200, { 'Content-Type' => 'text/plain' }, ['ok']]
end
request_start = Process.clock_gettime(CLOCK)
deadline = request_start + TARGET_SERVICE_SECONDS
cpu_seconds = 0.0
io_seconds = 0.0
while (remaining = deadline - Process.clock_gettime(CLOCK)) > 0
slice = [remaining, rand * (SLICE_MAX_SECONDS - SLICE_MIN_SECONDS) + SLICE_MIN_SECONDS].min
if rand < 0.5
cpu_start = Process.clock_gettime(CLOCK)
busy_spin(slice)
cpu_seconds += Process.clock_gettime(CLOCK) - cpu_start
else
io_start = Process.clock_gettime(CLOCK)
sleep(slice)
io_seconds += Process.clock_gettime(CLOCK) - io_start
end
end
service_ms = ((Process.clock_gettime(CLOCK) - request_start) * 1000.0)
body = {
pid: Process.pid,
service_ms: service_ms.round(2),
cpu_ms: (cpu_seconds * 1000.0).round(2),
io_ms: (io_seconds * 1000.0).round(2)
}.to_json
[
200,
{
'Content-Type' => 'application/json',
'X-Service-Time-Ms' => format('%.3f', service_ms),
'X-Worker-Pid' => Process.pid.to_s
},
[body]
]
}
services:
puma:
build:
context: ../../..
dockerfile: benchmarks/docker/term-capacity/Dockerfile
cpus: ${CONTAINER_CPUS:-4}
environment:
WEB_CONCURRENCY: 4
MIN_THREADS: ${MIN_THREADS:-5}
MAX_THREADS: ${MAX_THREADS:-5}
PORT: 9292
CONTROL_PORT: 9293
ports:
- "9292:9292"
- "9293:9293"
healthcheck:
test: ["CMD", "curl", "-fsS", "http://localhost:9292/health"]
interval: 2s
timeout: 1s
retries: 30
k6:
image: grafana/k6:1.6.1
cpus: ${CONTAINER_CPUS:-4}
volumes:
- ./k6:/scripts:ro
- ./results:/results
working_dir: /scripts
entrypoint: ["k6"]

Puma TERM/restart benchmark (Docker + k6)

Goal

Benchmark a synthetic Rack app (~250ms service time, random 50/50 IO+CPU slices every ~10ms) on Puma with 4 workers while continuously terminating workers in a loop:

  1. TERM one worker
  2. wait for replacement to boot
  3. let replacement serve traffic for ~5s
  4. TERM a different worker (round-robin)

Environment

  • Puma workers: 4
  • Thread scenarios: 5 and 25
  • Traffic model: k6 open model (constant-arrival-rate)
  • Containers: 4 CPUs each (cpus: 4 in compose)

Rate tuning (threads=5 quick runs)

  • 16 rps -> avg queue_time_ms 3.16
  • 20 rps -> avg queue_time_ms 5.78
  • 24 rps -> avg queue_time_ms 8.89
  • 26 rps -> avg queue_time_ms 10.39 (target band reached)

Final full run used for comparison

  • Run id: 20260303T002252Z
  • Rate: 26 rps
  • Duration: 80s
  • Warmup: 10s

Queue time (queue_time_ms = http_req_duration - service_time)

threads=5

  • avg: 9.34 ms
  • p50: 1.21 ms
  • p90: 29.05 ms
  • p95: 40.39 ms
  • max: 125.01 ms

threads=25

  • avg: 10.35 ms
  • p50: 1.52 ms
  • p90: 32.89 ms
  • p95: 44.92 ms
  • max: 96.43 ms

Worker kill/restart counts (full run)

threads=5

  • terms_sent: 12
  • restarts_observed: 12
  • restart_timeouts: 0
  • unique_worker_indexes_killed: 4

threads=25

  • terms_sent: 12
  • restarts_observed: 12
  • restart_timeouts: 0
  • unique_worker_indexes_killed: 4

Raw artifacts are included in this gist.

This file has been truncated, but you can view the full file.
{"type":"Metric","data":{"name":"http_reqs","type":"counter","contains":"default","thresholds":[],"submetrics":null},"metric":"http_reqs"}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:16.723174884Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"type":"Metric","data":{"name":"http_req_duration","type":"trend","contains":"time","thresholds":[],"submetrics":[{"name":"http_req_duration{expected_response:true}","suffix":"expected_response:true","tags":{"expected_response":"true"}}]},"metric":"http_req_duration"}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:16.723174884Z","value":251.417556,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"type":"Metric","data":{"name":"http_req_blocked","type":"trend","contains":"time","thresholds":[],"submetrics":null},"metric":"http_req_blocked"}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:16.723174884Z","value":0.388541,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"type":"Metric","data":{"name":"http_req_connecting","type":"trend","contains":"time","thresholds":[],"submetrics":null},"metric":"http_req_connecting"}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:16.723174884Z","value":0.093708,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"type":"Metric","data":{"name":"http_req_tls_handshaking","type":"trend","contains":"time","thresholds":[],"submetrics":null},"metric":"http_req_tls_handshaking"}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:16.723174884Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"type":"Metric","data":{"name":"http_req_sending","type":"trend","contains":"time","thresholds":[],"submetrics":null},"metric":"http_req_sending"}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:16.723174884Z","value":0.025042,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"type":"Metric","data":{"name":"http_req_waiting","type":"trend","contains":"time","thresholds":[],"submetrics":null},"metric":"http_req_waiting"}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:16.723174884Z","value":251.315306,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"type":"Metric","data":{"name":"http_req_receiving","type":"trend","contains":"time","thresholds":[],"submetrics":null},"metric":"http_req_receiving"}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:16.723174884Z","value":0.077208,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"type":"Metric","data":{"name":"http_req_failed","type":"rate","contains":"default","thresholds":["rate<0.01"],"submetrics":null},"metric":"http_req_failed"}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:16.723174884Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"type":"Metric","data":{"name":"checks","type":"rate","contains":"default","thresholds":[],"submetrics":null},"metric":"checks"}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:16.723350884Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"type":"Metric","data":{"name":"service_time_ms","type":"trend","contains":"default","thresholds":[],"submetrics":null},"metric":"service_time_ms"}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:16.723386925Z","value":250.963,"tags":{"group":"","scenario":"open_model"}}}
{"type":"Metric","data":{"name":"queue_time_ms","type":"trend","contains":"default","thresholds":[],"submetrics":null},"metric":"queue_time_ms"}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:16.723408634Z","value":0.45455599999999663,"tags":{"group":"","scenario":"open_model"}}}
{"type":"Metric","data":{"name":"data_sent","type":"counter","contains":"data","thresholds":[],"submetrics":null},"metric":"data_sent"}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:16.723410092Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"type":"Metric","data":{"name":"data_received","type":"counter","contains":"data","thresholds":[],"submetrics":null},"metric":"data_received"}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:16.723410092Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"type":"Metric","data":{"name":"iteration_duration","type":"trend","contains":"time","thresholds":[],"submetrics":null},"metric":"iteration_duration"}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:16.723410092Z","value":252.111972,"tags":{"group":"","scenario":"open_model"}}}
{"type":"Metric","data":{"name":"iterations","type":"counter","contains":"default","thresholds":[],"submetrics":null},"metric":"iterations"}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:16.723410092Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:16.773710503Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:16.773710503Z","value":261.821171,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:16.773710503Z","value":0.399792,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:16.773710503Z","value":0.352541,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:16.773710503Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:16.773710503Z","value":0.041292,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:16.773710503Z","value":261.760713,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:16.773710503Z","value":0.019166,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:16.773710503Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:16.773740087Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:16.773752378Z","value":259.737,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:16.773766836Z","value":2.0841709999999694,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:16.77376817Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:16.77376817Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:16.77376817Z","value":262.357921,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:16.77376817Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:16.806276931Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:16.806276931Z","value":257.676842,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:16.806276931Z","value":0.122084,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:16.806276931Z","value":0.089125,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:16.806276931Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:16.806276931Z","value":0.027792,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:16.806276931Z","value":257.628592,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:16.806276931Z","value":0.020458,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:16.806276931Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:16.806305473Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:16.806319056Z","value":253.48,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:16.806327848Z","value":4.196842000000032,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:16.806329348Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:16.806329348Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:16.806329348Z","value":257.911049,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:16.806329348Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:16.839331067Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:16.839331067Z","value":252.543597,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:16.839331067Z","value":0.074667,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:16.839331067Z","value":0.054291,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:16.839331067Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:16.839331067Z","value":0.016584,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:16.839331067Z","value":252.470471,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:16.839331067Z","value":0.056542,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:16.839331067Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:16.839355442Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:16.839365025Z","value":250.852,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:16.839370983Z","value":1.6915970000000016,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:16.839372025Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:16.839372025Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:16.839372025Z","value":252.706138,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:16.839372025Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:16.876433782Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:16.876433782Z","value":251.228723,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:16.876433782Z","value":0.104,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:16.876433782Z","value":0.079208,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:16.876433782Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:16.876433782Z","value":0.014917,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:16.876433782Z","value":251.187848,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:16.876433782Z","value":0.025958,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:16.876433782Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:16.876484823Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:16.876511532Z","value":250.932,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:16.876518948Z","value":0.2967230000000143,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:16.876520032Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:16.876520032Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:16.876520032Z","value":251.446806,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:16.876520032Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:16.917474077Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:16.917474077Z","value":252.721513,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:16.917474077Z","value":0.105333,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:16.917474077Z","value":0.071667,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:16.917474077Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:16.917474077Z","value":0.025291,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:16.917474077Z","value":252.662638,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:16.917474077Z","value":0.033584,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:16.917474077Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:16.917521368Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:16.91753591Z","value":252.385,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:16.917543577Z","value":0.3365129999999965,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:16.917544993Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:16.917544993Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:16.917544993Z","value":253.001012,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:16.917544993Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:16.960765119Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:16.960765119Z","value":255.781551,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:16.960765119Z","value":0.059667,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:16.960765119Z","value":0.042334,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:16.960765119Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:16.960765119Z","value":0.011791,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:16.960765119Z","value":255.750927,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:16.960765119Z","value":0.018833,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:16.960765119Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:16.960791578Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:16.960807036Z","value":250.004,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:16.960813994Z","value":5.777551000000017,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:16.960815078Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:16.960815078Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:16.960815078Z","value":257.945008,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:16.960815078Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:16.998256418Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:16.998256418Z","value":256.824801,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:16.998256418Z","value":0.073958,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:16.998256418Z","value":0.051625,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:16.998256418Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:16.998256418Z","value":0.01425,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:16.998256418Z","value":256.783051,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:16.998256418Z","value":0.0275,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:16.998256418Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:16.998309876Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:16.998324501Z","value":256.514,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:16.998330418Z","value":0.31080099999996946,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:16.998331334Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:16.998331334Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:16.998331334Z","value":257.002967,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:16.998331334Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:17.029932513Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.029932513Z","value":250.883556,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:17.029932513Z","value":0.07675,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:17.029932513Z","value":0.06225,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:17.029932513Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:17.029932513Z","value":0.01675,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:17.029932513Z","value":250.850514,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:17.029932513Z","value":0.016292,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:17.029932513Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:17.029954638Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.029961555Z","value":250.056,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.029966971Z","value":0.8275559999999871,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:17.029967888Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:17.029967888Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.029967888Z","value":251.02814,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:17.029967888Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:17.068320519Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.068320519Z","value":250.263099,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:17.068320519Z","value":0.079209,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:17.068320519Z","value":0.048625,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:17.068320519Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:17.068320519Z","value":0.018042,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:17.068320519Z","value":250.226182,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:17.068320519Z","value":0.018875,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:17.068320519Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:17.068352144Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.06836731Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.068376644Z","value":0.2620990000000063,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:17.068379644Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:17.068379644Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.068379644Z","value":250.437432,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:17.068379644Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:17.108094481Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.108094481Z","value":251.217972,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:17.108094481Z","value":0.154917,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:17.108094481Z","value":0.114709,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:17.108094481Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:17.108094481Z","value":0.043624,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:17.108094481Z","value":251.159932,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:17.108094481Z","value":0.014416,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:17.108094481Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:17.10812069Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.10813194Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.108139106Z","value":1.2169719999999984,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:17.10814019Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:17.10814019Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.10814019Z","value":251.523139,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:17.10814019Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:17.145762529Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.145762529Z","value":250.960348,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:17.145762529Z","value":0.092166,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:17.145762529Z","value":0.067666,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:17.145762529Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:17.145762529Z","value":0.023417,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:17.145762529Z","value":250.921431,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:17.145762529Z","value":0.0155,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:17.145762529Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:17.145788196Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.145798654Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.145804488Z","value":0.9593480000000056,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:17.145805571Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:17.145805571Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.145805571Z","value":251.14664,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:17.145805571Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:17.188297281Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.188297281Z","value":254.424053,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:17.188297281Z","value":0.186625,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:17.188297281Z","value":0.162,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:17.188297281Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:17.188297281Z","value":0.016583,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:17.188297281Z","value":254.36497,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:17.188297281Z","value":0.0425,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:17.188297281Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:17.188419114Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.188435573Z","value":250.055,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.188443156Z","value":4.36905299999998,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:17.188444948Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:17.188444948Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.188444948Z","value":254.792345,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:17.188444948Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:17.224099706Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.224099706Z","value":251.951056,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:17.224099706Z","value":0.083666,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:17.224099706Z","value":0.063583,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:17.224099706Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:17.224099706Z","value":0.018834,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:17.224099706Z","value":251.907264,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:17.224099706Z","value":0.024958,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:17.224099706Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:17.224122081Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.224131456Z","value":250.003,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.224136622Z","value":1.9480560000000082,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:17.224137581Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:17.224137581Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.224137581Z","value":252.099139,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:17.224137581Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:17.261015755Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.261015755Z","value":250.445682,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:17.261015755Z","value":0.058875,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:17.261015755Z","value":0.045667,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:17.261015755Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:17.261015755Z","value":0.01375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:17.261015755Z","value":250.391015,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:17.261015755Z","value":0.040917,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:17.261015755Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:17.261073088Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.261095254Z","value":250.09,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.261105546Z","value":0.3556820000000016,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:17.261116838Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:17.261116838Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.261116838Z","value":250.631556,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:17.261116838Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:17.311236499Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.311236499Z","value":262.077379,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:17.311236499Z","value":0.0545,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:17.311236499Z","value":0.041542,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:17.311236499Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:17.311236499Z","value":0.010708,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:17.311236499Z","value":262.037088,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:17.311236499Z","value":0.029583,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:17.311236499Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:17.311270749Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.311291207Z","value":256.774,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.311300874Z","value":5.303379000000007,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:17.311302457Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:17.311302457Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.311302457Z","value":262.227421,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:17.311302457Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:17.345765508Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.345765508Z","value":258.126883,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:17.345765508Z","value":0.116333,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:17.345765508Z","value":0.095749,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:17.345765508Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:17.345765508Z","value":0.014,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:17.345765508Z","value":258.084175,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:17.345765508Z","value":0.028708,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:17.345765508Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:17.345804842Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.345862842Z","value":256.23,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.345874175Z","value":1.8968830000000025,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:17.345875717Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:17.345875717Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.345875717Z","value":258.384758,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:17.345875717Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:17.399489291Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.399489291Z","value":273.75591,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:17.399489291Z","value":0.065666,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:17.399489291Z","value":0.040833,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:17.399489291Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:17.399489291Z","value":0.011667,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:17.399489291Z","value":273.726535,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:17.399489291Z","value":0.017708,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:17.399489291Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:17.39951825Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.399531583Z","value":262.423,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.399545916Z","value":11.33290999999997,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:17.399547166Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:17.399547166Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.399547166Z","value":273.90991,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:17.399547166Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:17.415290527Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.415290527Z","value":250.808099,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:17.415290527Z","value":0.111292,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:17.415290527Z","value":0.089291,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:17.415290527Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:17.415290527Z","value":0.017125,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:17.415290527Z","value":250.77314,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:17.415290527Z","value":0.017834,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:17.415290527Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:17.415316068Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.415322943Z","value":250.516,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.415328276Z","value":0.29209900000000744,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:17.415329068Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:17.415329068Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.415329068Z","value":251.008098,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:17.415329068Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:17.454043157Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.454043157Z","value":251.305889,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:17.454043157Z","value":0.085458,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:17.454043157Z","value":0.065292,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:17.454043157Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:17.454043157Z","value":0.018749,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:17.454043157Z","value":251.26439,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:17.454043157Z","value":0.02275,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:17.454043157Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:17.45407474Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.454087073Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.454094032Z","value":1.3048890000000029,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:17.45409524Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:17.45409524Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.45409524Z","value":251.503931,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:17.45409524Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"type":"Metric","data":{"name":"vus","type":"gauge","contains":"default","thresholds":[],"submetrics":null},"metric":"vus"}
{"metric":"vus","type":"Point","data":{"time":"2026-03-03T00:24:17.464190439Z","value":6,"tags":{}}}
{"type":"Metric","data":{"name":"vus_max","type":"gauge","contains":"default","thresholds":[],"submetrics":null},"metric":"vus_max"}
{"metric":"vus_max","type":"Point","data":{"time":"2026-03-03T00:24:17.464190439Z","value":50,"tags":{}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:17.527949004Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.527949004Z","value":287.118356,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:17.527949004Z","value":0.221083,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:17.527949004Z","value":0.172374,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:17.527949004Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:17.527949004Z","value":0.033,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:17.527949004Z","value":287.057773,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:17.527949004Z","value":0.027583,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:17.527949004Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:17.528006087Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.528027712Z","value":266.209,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.528037754Z","value":20.909356000000002,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:17.528039254Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:17.528039254Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.528039254Z","value":287.544397,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:17.528039254Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:17.530109586Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.530109586Z","value":250.283932,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:17.530109586Z","value":0.135416,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:17.530109586Z","value":0.110917,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:17.530109586Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:17.530109586Z","value":0.025666,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:17.530109586Z","value":250.240099,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:17.530109586Z","value":0.018167,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:17.530109586Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:17.530142669Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.530153627Z","value":250.002,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.530161919Z","value":0.2819319999999834,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:17.530163252Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:17.530163252Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.530163252Z","value":250.525265,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:17.530163252Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:17.589932988Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.589932988Z","value":272.243912,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:17.589932988Z","value":0.078209,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:17.589932988Z","value":0.049916,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:17.589932988Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:17.589932988Z","value":0.012167,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:17.589932988Z","value":272.212286,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:17.589932988Z","value":0.019459,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:17.589932988Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:17.589958696Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.589968821Z","value":270.009,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.589984988Z","value":2.2349120000000084,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:17.589986029Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:17.589986029Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.589986029Z","value":272.408328,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:17.589986029Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:17.616730421Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.616730421Z","value":260.117381,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:17.616730421Z","value":0.084333,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:17.616730421Z","value":0.066042,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:17.616730421Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:17.616730421Z","value":0.019917,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:17.616730421Z","value":260.078839,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:17.616730421Z","value":0.018625,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:17.616730421Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:17.616761213Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.616772296Z","value":259.8,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.616778838Z","value":0.3173810000000117,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:17.616779796Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:17.616779796Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.616779796Z","value":260.286548,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:17.616779796Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:17.646888518Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.646888518Z","value":251.804264,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:17.646888518Z","value":0.061667,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:17.646888518Z","value":0.046417,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:17.646888518Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:17.646888518Z","value":0.017458,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:17.646888518Z","value":251.769389,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:17.646888518Z","value":0.017417,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:17.646888518Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:17.646932851Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.646945934Z","value":250.002,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.646954393Z","value":1.8022639999999797,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:17.646955684Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:17.646955684Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.646955684Z","value":251.960638,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:17.646955684Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:17.708196502Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.708196502Z","value":274.770742,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:17.708196502Z","value":0.11175,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:17.708196502Z","value":0.094292,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:17.708196502Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:17.708196502Z","value":0.015416,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:17.708196502Z","value":274.742826,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:17.708196502Z","value":0.0125,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:17.708196502Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:17.708230418Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.708241627Z","value":274.556,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.70824871Z","value":0.2147420000000011,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:17.708249377Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:17.708249377Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.708249377Z","value":274.969783,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:17.708249377Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:17.735492518Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.735492518Z","value":264.124419,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:17.735492518Z","value":0.0635,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:17.735492518Z","value":0.039583,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:17.735492518Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:17.735492518Z","value":0.014917,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:17.735492518Z","value":264.09021,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:17.735492518Z","value":0.019292,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:17.735492518Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:17.735521893Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.73553131Z","value":251.142,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.735537935Z","value":12.982418999999993,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:17.735538893Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:17.735538893Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.735538893Z","value":264.259794,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:17.735538893Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:17.764251908Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.764251908Z","value":253.074638,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:17.764251908Z","value":0.124375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:17.764251908Z","value":0.096042,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:17.764251908Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:17.764251908Z","value":0.025375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:17.764251908Z","value":253.018471,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:17.764251908Z","value":0.030792,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:17.764251908Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:17.764279241Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.764290033Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.764297991Z","value":3.0736379999999883,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:17.764299033Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:17.764299033Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.764299033Z","value":253.32968,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:17.764299033Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:17.808898199Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.808898199Z","value":260.406381,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:17.808898199Z","value":0.111958,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:17.808898199Z","value":0.093666,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:17.808898199Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:17.808898199Z","value":0.013375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:17.808898199Z","value":260.355464,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:17.808898199Z","value":0.037542,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:17.808898199Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:17.808969949Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.809004991Z","value":260.058,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.809013074Z","value":0.3483810000000176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:17.809015907Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:17.809015907Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.809015907Z","value":260.664797,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:17.809015907Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:17.839145587Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.839145587Z","value":251.230556,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:17.839145587Z","value":1.146124,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:17.839145587Z","value":1.126707,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:17.839145587Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:17.839145587Z","value":0.013334,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:17.839145587Z","value":251.199889,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:17.839145587Z","value":0.017333,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:17.839145587Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:17.839171462Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.839184921Z","value":250.002,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.839190462Z","value":1.2285559999999975,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:17.839191296Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:17.839191296Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.839191296Z","value":252.454639,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:17.839191296Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:17.886934668Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.886934668Z","value":259.987632,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:17.886934668Z","value":0.062166,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:17.886934668Z","value":0.048708,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:17.886934668Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:17.886934668Z","value":0.01175,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:17.886934668Z","value":259.95259,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:17.886934668Z","value":0.023292,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:17.886934668Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:17.886981292Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.886994042Z","value":259.684,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.887003834Z","value":0.30363199999999324,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:17.887005209Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:17.887005209Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.887005209Z","value":260.160173,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:17.887005209Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:17.914032559Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.914032559Z","value":250.281015,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:17.914032559Z","value":0.090042,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:17.914032559Z","value":0.06925,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:17.914032559Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:17.914032559Z","value":0.016083,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:17.914032559Z","value":250.248807,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:17.914032559Z","value":0.016125,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:17.914032559Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:17.914063475Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.9140751Z","value":250.002,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.914080934Z","value":0.2790149999999869,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:17.914081809Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:17.914081809Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.914081809Z","value":250.458224,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:17.914081809Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:17.953987105Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.953987105Z","value":251.143181,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:17.953987105Z","value":0.087709,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:17.953987105Z","value":0.06775,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:17.953987105Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:17.953987105Z","value":0.011708,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:17.953987105Z","value":251.121264,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:17.953987105Z","value":0.010209,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:17.953987105Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:17.954018605Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.954048938Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.954055521Z","value":1.1421809999999937,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:17.954056521Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:17.954056521Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.954056521Z","value":251.330556,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:17.954056521Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:17.991035653Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.991035653Z","value":250.249515,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:17.991035653Z","value":0.100791,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:17.991035653Z","value":0.087625,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:17.991035653Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:17.991035653Z","value":0.010208,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:17.991035653Z","value":250.221516,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:17.991035653Z","value":0.017791,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:17.991035653Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:17.991059612Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.991074903Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:17.991092653Z","value":0.2485149999999976,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:17.991093528Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:17.991093528Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:17.991093528Z","value":250.435265,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:17.991093528Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:18.06781379Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.06781379Z","value":288.23723,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:18.06781379Z","value":0.1015,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:18.06781379Z","value":0.087208,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:18.06781379Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:18.06781379Z","value":0.014542,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:18.06781379Z","value":288.201396,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:18.06781379Z","value":0.021292,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:18.06781379Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:18.067855498Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.067872706Z","value":282.745,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.067884665Z","value":5.492230000000006,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:18.06788579Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:18.06788579Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.06788579Z","value":288.433522,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:18.06788579Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:18.078033822Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.078033822Z","value":258.923466,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:18.078033822Z","value":0.129708,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:18.078033822Z","value":0.11275,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:18.078033822Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:18.078033822Z","value":0.017792,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:18.078033822Z","value":258.886424,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:18.078033822Z","value":0.01925,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:18.078033822Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:18.078062405Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.078075697Z","value":258.715,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.07809178Z","value":0.208466000000044,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:18.07809303Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:18.07809303Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.07809303Z","value":259.152799,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:18.07809303Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:18.106503087Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.106503087Z","value":250.245724,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:18.106503087Z","value":0.125333,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:18.106503087Z","value":0.104333,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:18.106503087Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:18.106503087Z","value":0.018208,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:18.106503087Z","value":250.212016,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:18.106503087Z","value":0.0155,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:18.106503087Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:18.106523587Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.10653267Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.10653892Z","value":0.24472399999999084,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:18.106539753Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:18.106539753Z","value":175,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.106539753Z","value":250.433807,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:18.106539753Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:18.14736309Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.14736309Z","value":251.644139,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:18.14736309Z","value":0.079875,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:18.14736309Z","value":0.056292,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:18.14736309Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:18.14736309Z","value":0.015667,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:18.14736309Z","value":251.605389,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:18.14736309Z","value":0.023083,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:18.14736309Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:18.147395882Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.147432548Z","value":250.611,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.147441173Z","value":1.0331390000000056,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:18.14744209Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:18.14744209Z","value":175,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.14744209Z","value":251.842098,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:18.14744209Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:18.184395139Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.184395139Z","value":250.248891,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:18.184395139Z","value":0.0625,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:18.184395139Z","value":0.042458,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:18.184395139Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:18.184395139Z","value":0.01725,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:18.184395139Z","value":250.217099,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:18.184395139Z","value":0.014542,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:18.184395139Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:18.18442793Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.184446347Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.184467055Z","value":0.24789099999998143,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:18.184468055Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:18.184468055Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.184468055Z","value":250.403057,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:18.184468055Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:18.224797934Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.224797934Z","value":252.745763,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:18.224797934Z","value":0.068458,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:18.224797934Z","value":0.051208,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:18.224797934Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:18.224797934Z","value":0.010542,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:18.224797934Z","value":252.721054,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:18.224797934Z","value":0.014167,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:18.224797934Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:18.224830059Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.224842684Z","value":251.348,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.224849059Z","value":1.3977629999999976,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:18.224850059Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:18.224850059Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.224850059Z","value":252.896346,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:18.224850059Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:18.312679685Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.312679685Z","value":264.167711,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:18.312679685Z","value":0.074958,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:18.312679685Z","value":0.036833,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:18.312679685Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:18.312679685Z","value":0.011084,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:18.312679685Z","value":264.125794,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:18.312679685Z","value":0.030833,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:18.312679685Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:18.312725352Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.312757227Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.312766018Z","value":14.166710999999992,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:18.312767643Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:18.312767643Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.312767643Z","value":264.361877,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:18.312767643Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:18.324526674Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.324526674Z","value":313.361706,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:18.324526674Z","value":0.05925,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:18.324526674Z","value":0.046292,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:18.324526674Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:18.324526674Z","value":0.011,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:18.324526674Z","value":313.338914,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:18.324526674Z","value":0.011792,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:18.324526674Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:18.32455059Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.324567049Z","value":313.018,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.324574299Z","value":0.34370600000005425,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:18.324575007Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:18.324575007Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.324575007Z","value":313.499539,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:18.324575007Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:18.337193454Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.337193454Z","value":250.372141,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:18.337193454Z","value":0.099208,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:18.337193454Z","value":0.0705,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:18.337193454Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:18.337193454Z","value":0.017209,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:18.337193454Z","value":250.318765,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:18.337193454Z","value":0.036167,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:18.337193454Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:18.337246537Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.337265162Z","value":250.003,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.337271162Z","value":0.36914100000001326,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:18.337272454Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:18.337272454Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.337272454Z","value":250.594056,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:18.337272454Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:18.376882791Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.376882791Z","value":251.696889,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:18.376882791Z","value":0.048292,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:18.376882791Z","value":0.035041,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:18.376882791Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:18.376882791Z","value":0.01425,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:18.376882791Z","value":251.667848,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:18.376882791Z","value":0.014791,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:18.376882791Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:18.376917333Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.376926166Z","value":251.416,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.376931958Z","value":0.28088900000000194,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:18.376932875Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:18.376932875Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.376932875Z","value":251.824139,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:18.376932875Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:18.415011881Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.415011881Z","value":251.07914,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:18.415011881Z","value":0.3265,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:18.415011881Z","value":0.3155,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:18.415011881Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:18.415011881Z","value":0.012042,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:18.415011881Z","value":251.055681,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:18.415011881Z","value":0.011417,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:18.415011881Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:18.415037756Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.415046339Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.415052297Z","value":1.0781399999999906,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:18.415053172Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:18.415053172Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.415053172Z","value":251.472014,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:18.415053172Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:18.455211635Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.455211635Z","value":252.286055,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:18.455211635Z","value":0.315083,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:18.455211635Z","value":0.304292,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:18.455211635Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:18.455211635Z","value":0.008458,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:18.455211635Z","value":252.259388,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:18.455211635Z","value":0.018209,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:18.455211635Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:18.455237468Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.455246885Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.455252885Z","value":2.285055,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:18.455253718Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:18.455253718Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.455253718Z","value":252.673847,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:18.455253718Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"vus","type":"Point","data":{"time":"2026-03-03T00:24:18.464102251Z","value":6,"tags":{}}}
{"metric":"vus_max","type":"Point","data":{"time":"2026-03-03T00:24:18.464102251Z","value":50,"tags":{}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:18.49241435Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.49241435Z","value":250.492557,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:18.49241435Z","value":0.918333,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:18.49241435Z","value":0.904499,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:18.49241435Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:18.49241435Z","value":0.014,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:18.49241435Z","value":250.46739,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:18.49241435Z","value":0.011167,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:18.49241435Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:18.4924371Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.492445475Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.492449975Z","value":0.49155700000000024,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:18.492450766Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:18.492450766Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.492450766Z","value":251.472347,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:18.492450766Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:18.52976669Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.52976669Z","value":250.292932,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:18.52976669Z","value":0.072042,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:18.52976669Z","value":0.058667,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:18.52976669Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:18.52976669Z","value":0.016291,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:18.52976669Z","value":250.242474,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:18.52976669Z","value":0.034167,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:18.52976669Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:18.529815856Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.529833231Z","value":250.003,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.529849065Z","value":0.2899320000000216,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:18.529850606Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:18.529850606Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.529850606Z","value":250.49864,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:18.529850606Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:18.572606858Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.572606858Z","value":254.42172,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:18.572606858Z","value":0.056375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:18.572606858Z","value":0.039542,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:18.572606858Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:18.572606858Z","value":0.013167,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:18.572606858Z","value":254.37772,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:18.572606858Z","value":0.030833,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:18.572606858Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:18.572655524Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.572670316Z","value":250.523,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.572676149Z","value":3.8987199999999973,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:18.572677733Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:18.572677733Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.572677733Z","value":254.579511,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:18.572677733Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:18.612923528Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.612923528Z","value":256.288759,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:18.612923528Z","value":0.071291,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:18.612923528Z","value":0.045625,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:18.612923528Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:18.612923528Z","value":0.013916,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:18.612923528Z","value":256.232468,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:18.612923528Z","value":0.042375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:18.612923528Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:18.612966445Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.612984195Z","value":255.838,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.61299007Z","value":0.45075900000003344,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:18.612991945Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:18.612991945Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.612991945Z","value":256.472093,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:18.612991945Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:18.665214021Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.665214021Z","value":270.219872,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:18.665214021Z","value":0.004291,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:18.665214021Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:18.665214021Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:18.665214021Z","value":0.004375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:18.665214021Z","value":270.18633,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:18.665214021Z","value":0.029167,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:18.665214021Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:18.665236771Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.665250271Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.665253063Z","value":20.218872000000005,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:18.665254188Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:18.665254188Z","value":175,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.665254188Z","value":270.278913,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:18.665254188Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:18.699203697Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.699203697Z","value":266.046917,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:18.699203697Z","value":0.002375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:18.699203697Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:18.699203697Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:18.699203697Z","value":0.007167,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:18.699203697Z","value":266.026542,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:18.699203697Z","value":0.013208,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:18.699203697Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:18.699226781Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.699237072Z","value":250.072,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.699240947Z","value":15.974917000000005,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:18.699242197Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:18.699242197Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.699242197Z","value":266.103959,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:18.699242197Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:18.721585718Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.721585718Z","value":250.257974,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:18.721585718Z","value":0.001833,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:18.721585718Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:18.721585718Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:18.721585718Z","value":0.010084,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:18.721585718Z","value":250.233515,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:18.721585718Z","value":0.014375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:18.721585718Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:18.721599843Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.721610093Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.721612926Z","value":0.2569739999999854,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:18.72161401Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:18.72161401Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.72161401Z","value":250.311973,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:18.72161401Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:18.760030974Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.760030974Z","value":250.356765,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:18.760030974Z","value":0.001709,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:18.760030974Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:18.760030974Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:18.760030974Z","value":0.003333,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:18.760030974Z","value":250.34089,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:18.760030974Z","value":0.012542,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:18.760030974Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:18.760045724Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.760061599Z","value":250.13,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.760065057Z","value":0.22676500000000033,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:18.760066099Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:18.760066099Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.760066099Z","value":250.40789,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:18.760066099Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:18.800869602Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.800869602Z","value":252.030639,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:18.800869602Z","value":0.002375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:18.800869602Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:18.800869602Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:18.800869602Z","value":0.005209,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:18.800869602Z","value":252.00443,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:18.800869602Z","value":0.021,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:18.800869602Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:18.800884894Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.800900602Z","value":250.277,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.800904102Z","value":1.753639000000021,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:18.80091306Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:18.80091306Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.80091306Z","value":252.102638,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:18.80091306Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:18.879039987Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.879039987Z","value":291.17581,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:18.879039987Z","value":0.007,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:18.879039987Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:18.879039987Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:18.879039987Z","value":0.008917,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:18.879039987Z","value":291.149601,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:18.879039987Z","value":0.017292,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:18.879039987Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:18.879055237Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.879066529Z","value":250.082,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.879070029Z","value":41.09381000000002,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:18.87907107Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:18.87907107Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.87907107Z","value":291.239268,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:18.87907107Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:18.893665265Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.893665265Z","value":268.231415,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:18.893665265Z","value":0.002625,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:18.893665265Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:18.893665265Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:18.893665265Z","value":0.010625,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:18.893665265Z","value":268.208498,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:18.893665265Z","value":0.012292,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:18.893665265Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:18.893681515Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.893691557Z","value":267.46,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.893694432Z","value":0.7714150000000473,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:18.893695182Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:18.893695182Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.893695182Z","value":268.288874,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:18.893695182Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:18.916350119Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.916350119Z","value":252.709638,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:18.916350119Z","value":0.002,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:18.916350119Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:18.916350119Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:18.916350119Z","value":0.004666,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:18.916350119Z","value":252.691138,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:18.916350119Z","value":0.013834,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:18.916350119Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:18.916363577Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.91637266Z","value":252.472,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.91637616Z","value":0.237638000000004,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:18.916376952Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:18.916376952Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.916376952Z","value":252.758138,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:18.916376952Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:18.958626579Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.958626579Z","value":255.673968,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:18.958626579Z","value":0.0015,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:18.958626579Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:18.958626579Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:18.958626579Z","value":0.004083,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:18.958626579Z","value":255.65526,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:18.958626579Z","value":0.014625,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:18.958626579Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:18.958636662Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.958646912Z","value":255.546,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:18.958649329Z","value":0.12796800000000985,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:18.958650162Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:18.958650162Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.958650162Z","value":255.717051,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:18.958650162Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:18.999986665Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:18.999986665Z","value":259.308631,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:18.999986665Z","value":0.001334,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:18.999986665Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:18.999986665Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:18.999986665Z","value":0.003791,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:18.999986665Z","value":259.296715,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:18.999986665Z","value":0.008125,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:18.999986665Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:18.999997249Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.000003624Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.000005915Z","value":9.307630999999986,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:19.000006582Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:19.000006582Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.000006582Z","value":259.349382,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:19.000006582Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:19.043661708Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.043661708Z","value":263.687295,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:19.043661708Z","value":0.001666,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:19.043661708Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:19.043661708Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:19.043661708Z","value":0.004459,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:19.043661708Z","value":263.668086,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:19.043661708Z","value":0.01475,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:19.043661708Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:19.043674291Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.043690749Z","value":251.737,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.043693624Z","value":11.950295000000011,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:19.043694458Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:19.043694458Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.043694458Z","value":263.741961,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:19.043694458Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:19.077023635Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.077023635Z","value":259.18409,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:19.077023635Z","value":0.0015,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:19.077023635Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:19.077023635Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:19.077023635Z","value":0.003583,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:19.077023635Z","value":259.153965,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:19.077023635Z","value":0.026542,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:19.077023635Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:19.077038718Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.07705251Z","value":258.935,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.07705501Z","value":0.2490900000000238,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:19.07705576Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:19.07705576Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.07705576Z","value":259.235006,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:19.07705576Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:19.131022709Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.131022709Z","value":275.027034,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:19.131022709Z","value":0.001666,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:19.131022709Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:19.131022709Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:19.131022709Z","value":0.004125,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:19.131022709Z","value":275.009909,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:19.131022709Z","value":0.013,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:19.131022709Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:19.131034542Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.131043501Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.131046542Z","value":25.02603400000001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:19.131047334Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:19.131047334Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.131047334Z","value":275.071117,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:19.131047334Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:19.154780687Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.154780687Z","value":259.827381,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:19.154780687Z","value":0.001792,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:19.154780687Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:19.154780687Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:19.154780687Z","value":0.007583,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:19.154780687Z","value":259.806506,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:19.154780687Z","value":0.013292,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:19.154780687Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:19.154794312Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.154802562Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.154805812Z","value":9.826380999999998,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:19.154806604Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:19.154806604Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.154806604Z","value":259.873631,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:19.154806604Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:19.19775448Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.19775448Z","value":264.188419,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:19.19775448Z","value":0.001292,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:19.19775448Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:19.19775448Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:19.19775448Z","value":0.003,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:19.19775448Z","value":264.175002,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:19.19775448Z","value":0.010417,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:19.19775448Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:19.197765147Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.197772272Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.197774522Z","value":14.187419000000006,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:19.19777523Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:19.19777523Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.19777523Z","value":264.224377,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:19.19777523Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:19.280926819Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.280926819Z","value":270.790205,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:19.280926819Z","value":0.001541,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:19.280926819Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:19.280926819Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:19.280926819Z","value":0.002584,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:19.280926819Z","value":270.773287,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:19.280926819Z","value":0.014334,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:19.280926819Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:19.28094311Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.280955027Z","value":270.209,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.280958485Z","value":0.5812050000000113,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:19.280959235Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:19.280959235Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.280959235Z","value":270.837579,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:19.280959235Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:19.291532142Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.291532142Z","value":320.321075,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:19.291532142Z","value":0.001541,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:19.291532142Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:19.291532142Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:19.291532142Z","value":0.008959,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:19.291532142Z","value":320.300366,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:19.291532142Z","value":0.01175,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:19.291532142Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:19.291547142Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.291555392Z","value":308.388,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.2915581Z","value":11.93307500000003,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:19.291558934Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:19.291558934Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.291558934Z","value":320.363992,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:19.291558934Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:19.327299942Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.327299942Z","value":278.547572,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:19.327299942Z","value":0.001167,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:19.327299942Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:19.327299942Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:19.327299942Z","value":0.003375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:19.327299942Z","value":278.534572,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:19.327299942Z","value":0.009625,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:19.327299942Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:19.3273099Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.327316858Z","value":256.315,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.327319067Z","value":22.232572000000005,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:19.327319692Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:19.327319692Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.327319692Z","value":278.585739,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:19.327319692Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:19.376033188Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.376033188Z","value":250.468265,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:19.376033188Z","value":0.001125,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:19.376033188Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:19.376033188Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:19.376033188Z","value":0.003666,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:19.376033188Z","value":250.448849,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:19.376033188Z","value":0.01575,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:19.376033188Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:19.376049188Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.376060979Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.376063646Z","value":0.4672649999999976,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:19.376064771Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:19.376064771Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.376064771Z","value":250.516598,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:19.376064771Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:19.40925974Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.40925974Z","value":320.922532,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:19.40925974Z","value":0.00175,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:19.40925974Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:19.40925974Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:19.40925974Z","value":0.003291,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:19.40925974Z","value":320.908116,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:19.40925974Z","value":0.011125,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:19.40925974Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:19.409270615Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.409277865Z","value":253.626,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.409280365Z","value":67.29653199999998,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:19.409281073Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:19.409281073Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.409281073Z","value":320.96024,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:19.409281073Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:19.415199359Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.415199359Z","value":250.622348,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:19.415199359Z","value":0.452708,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:19.415199359Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:19.415199359Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:19.415199359Z","value":0.003292,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:19.415199359Z","value":250.606848,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:19.415199359Z","value":0.012208,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:19.415199359Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:19.415214193Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.415223609Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.415227026Z","value":0.6213479999999834,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:19.415227943Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:19.415227943Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.415227943Z","value":251.114556,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:19.415227943Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:19.452225075Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.452225075Z","value":250.166807,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:19.452225075Z","value":0.001209,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:19.452225075Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:19.452225075Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:19.452225075Z","value":0.006291,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:19.452225075Z","value":250.142599,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:19.452225075Z","value":0.017917,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:19.452225075Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:19.452243283Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.452250741Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.452253283Z","value":0.16580700000000093,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:19.452254033Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:19.452254033Z","value":175,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.452254033Z","value":250.226682,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:19.452254033Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"vus","type":"Point","data":{"time":"2026-03-03T00:24:19.465602562Z","value":6,"tags":{}}}
{"metric":"vus_max","type":"Point","data":{"time":"2026-03-03T00:24:19.465602562Z","value":50,"tags":{}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:19.540040159Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.540040159Z","value":260.541214,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:19.540040159Z","value":0.0015,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:19.540040159Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:19.540040159Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:19.540040159Z","value":0.00475,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:19.540040159Z","value":260.499297,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:19.540040159Z","value":0.037167,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:19.540040159Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:19.540057117Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.540069034Z","value":258.886,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.540073367Z","value":1.6552140000000009,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:19.540074326Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:19.540074326Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.540074326Z","value":260.599005,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:19.540074326Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:19.542361532Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.542361532Z","value":301.749384,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:19.542361532Z","value":0.002,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:19.542361532Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:19.542361532Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:19.542361532Z","value":0.005958,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:19.542361532Z","value":301.730384,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:19.542361532Z","value":0.013042,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:19.542361532Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:19.542380615Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.542391157Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.542393698Z","value":51.748384000000016,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:19.54239424Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:19.54239424Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.54239424Z","value":301.812551,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:19.54239424Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:19.582749077Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.582749077Z","value":264.58996,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:19.582749077Z","value":0.001292,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:19.582749077Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:19.582749077Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:19.582749077Z","value":0.003458,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:19.582749077Z","value":264.572961,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:19.582749077Z","value":0.013541,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:19.582749077Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:19.582759786Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.582770327Z","value":250.002,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.582772786Z","value":14.58796000000001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:19.582773577Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:19.582773577Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.582773577Z","value":264.631794,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:19.582773577Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:19.606716138Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.606716138Z","value":250.23864,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:19.606716138Z","value":0.001542,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:19.606716138Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:19.606716138Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:19.606716138Z","value":0.00575,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:19.606716138Z","value":250.212015,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:19.606716138Z","value":0.020875,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:19.606716138Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:19.60673518Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.606745263Z","value":250.002,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.606748013Z","value":0.2366399999999942,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:19.606749096Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:19.606749096Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.606749096Z","value":250.29464,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:19.606749096Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:19.647191517Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.647191517Z","value":251.643139,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:19.647191517Z","value":0.001209,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:19.647191517Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:19.647191517Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:19.647191517Z","value":0.004416,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:19.647191517Z","value":251.605889,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:19.647191517Z","value":0.032834,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:19.647191517Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:19.647215933Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.6472361Z","value":251.449,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.647239392Z","value":0.19413899999997852,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:19.647240808Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:19.647240808Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.647240808Z","value":251.70993,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:19.647240808Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:19.693096765Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.693096765Z","value":259.723548,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:19.693096765Z","value":0.001833,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:19.693096765Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:19.693096765Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:19.693096765Z","value":0.007459,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:19.693096765Z","value":259.700798,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:19.693096765Z","value":0.015291,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:19.693096765Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:19.693119015Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.693128474Z","value":250.002,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.693131307Z","value":9.721547999999984,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:19.693132349Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:19.693132349Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.693132349Z","value":259.780423,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:19.693132349Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:19.735237268Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.735237268Z","value":263.289212,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:19.735237268Z","value":0.001667,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:19.735237268Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:19.735237268Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:19.735237268Z","value":0.00425,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:19.735237268Z","value":263.263587,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:19.735237268Z","value":0.021375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:19.735237268Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:19.735259851Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.735275059Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.735277601Z","value":13.288212000000016,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:19.735283976Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:19.735283976Z","value":175,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.735283976Z","value":263.353628,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:19.735283976Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:19.761057993Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.761057993Z","value":250.975931,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:19.761057993Z","value":0.001375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:19.761057993Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:19.761057993Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:19.761057993Z","value":0.003958,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:19.761057993Z","value":250.955223,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:19.761057993Z","value":0.01675,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:19.761057993Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:19.761074993Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.761087993Z","value":250.002,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.761090993Z","value":0.9739309999999932,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:19.761091993Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:19.761091993Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.761091993Z","value":251.027514,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:19.761091993Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:19.805151827Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.805151827Z","value":256.407968,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:19.805151827Z","value":0.00125,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:19.805151827Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:19.805151827Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:19.805151827Z","value":0.002667,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:19.805151827Z","value":256.384801,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:19.805151827Z","value":0.0205,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:19.805151827Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:19.805166994Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.805175744Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.805178369Z","value":6.406967999999978,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:19.805187785Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:19.805187785Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.805187785Z","value":256.460885,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:19.805187785Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:19.85039691Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.85039691Z","value":263.414587,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:19.85039691Z","value":0.001583,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:19.85039691Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:19.85039691Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:19.85039691Z","value":0.00325,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:19.85039691Z","value":263.391462,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:19.85039691Z","value":0.019875,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:19.85039691Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:19.850415035Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.850428243Z","value":250.004,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.850434618Z","value":13.410586999999992,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:19.850435784Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:19.850435784Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.850435784Z","value":263.484294,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:19.850435784Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:19.904092734Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.904092734Z","value":278.151031,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:19.904092734Z","value":0.00225,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:19.904092734Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:19.904092734Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:19.904092734Z","value":0.007334,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:19.904092734Z","value":278.124281,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:19.904092734Z","value":0.019416,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:19.904092734Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:19.904103859Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.904114567Z","value":250.004,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.904116692Z","value":28.147031,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:19.904117317Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:19.904117317Z","value":175,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.904117317Z","value":278.214989,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:19.904117317Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:19.915238182Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.915238182Z","value":251.281764,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:19.915238182Z","value":0.00175,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:19.915238182Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:19.915238182Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:19.915238182Z","value":0.004125,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:19.915238182Z","value":251.255389,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:19.915238182Z","value":0.02225,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:19.915238182Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:19.91526139Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.915273307Z","value":250.891,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.915282807Z","value":0.39076400000001854,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:19.915286974Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:19.915286974Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.915286974Z","value":251.347597,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:19.915286974Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:19.953829646Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.953829646Z","value":251.605764,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:19.953829646Z","value":0.001042,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:19.953829646Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:19.953829646Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:19.953829646Z","value":0.0045,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:19.953829646Z","value":251.587097,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:19.953829646Z","value":0.014167,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:19.953829646Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:19.953844813Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.953851188Z","value":250.158,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.953853729Z","value":1.4477640000000065,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:19.953857729Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:19.953857729Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.953857729Z","value":251.646764,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:19.953857729Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:19.997207689Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.997207689Z","value":256.682176,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:19.997207689Z","value":0.002042,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:19.997207689Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:19.997207689Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:19.997207689Z","value":0.01,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:19.997207689Z","value":256.651176,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:19.997207689Z","value":0.021,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:19.997207689Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:19.997221564Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.997267105Z","value":250.713,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:19.997270522Z","value":5.969176000000033,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:19.997271272Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:19.997271272Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:19.997271272Z","value":256.770343,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:19.997271272Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:20.0379584Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.0379584Z","value":258.588924,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:20.0379584Z","value":0.006042,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:20.0379584Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:20.0379584Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:20.0379584Z","value":0.003333,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:20.0379584Z","value":258.572466,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:20.0379584Z","value":0.013125,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:20.0379584Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:20.037971692Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.03798515Z","value":258.321,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.037988359Z","value":0.2679239999999936,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:20.037989525Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:20.037989525Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.037989525Z","value":258.643674,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:20.037989525Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:20.074248658Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.074248658Z","value":256.755551,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:20.074248658Z","value":0.004,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:20.074248658Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:20.074248658Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:20.074248658Z","value":0.003417,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:20.074248658Z","value":256.736467,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:20.074248658Z","value":0.015667,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:20.074248658Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:20.074268741Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.074279616Z","value":250.002,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.074282366Z","value":6.753551000000016,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:20.074283075Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:20.074283075Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.074283075Z","value":256.814135,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:20.074283075Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:20.120400406Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.120400406Z","value":263.725711,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:20.120400406Z","value":0.001166,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:20.120400406Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:20.120400406Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:20.120400406Z","value":0.003042,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:20.120400406Z","value":263.693628,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:20.120400406Z","value":0.029041,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:20.120400406Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:20.120422406Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.120436906Z","value":250.004,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.120439698Z","value":13.721710999999999,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:20.120440948Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:20.120440948Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.120440948Z","value":263.785961,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:20.120440948Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:20.147977922Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.147977922Z","value":252.744846,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:20.147977922Z","value":0.000917,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:20.147977922Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:20.147977922Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:20.147977922Z","value":0.0075,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:20.147977922Z","value":252.724013,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:20.147977922Z","value":0.013333,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:20.147977922Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:20.148011172Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.148017922Z","value":250.606,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.148020089Z","value":2.138846000000001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:20.148021005Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:20.148021005Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.148021005Z","value":252.805179,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:20.148021005Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:20.244246457Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.244246457Z","value":272.19087,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:20.244246457Z","value":0.000792,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:20.244246457Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:20.244246457Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:20.244246457Z","value":0.002958,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:20.244246457Z","value":272.167287,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:20.244246457Z","value":0.020625,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:20.244246457Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:20.24426154Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.244277332Z","value":250.002,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.244280707Z","value":22.18887000000001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:20.244281582Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:20.244281582Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.244281582Z","value":272.242703,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:20.244281582Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:20.25345799Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.25345799Z","value":319.048618,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:20.25345799Z","value":0.001458,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:20.25345799Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:20.25345799Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:20.25345799Z","value":0.002917,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:20.25345799Z","value":319.033284,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:20.25345799Z","value":0.012417,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:20.25345799Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:20.253468657Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.253478448Z","value":259.384,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.253481115Z","value":59.66461799999996,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:20.253481907Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:20.253481907Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.253481907Z","value":319.091868,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:20.253481907Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:20.261313899Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.261313899Z","value":250.470765,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:20.261313899Z","value":0.00125,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:20.261313899Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:20.261313899Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:20.261313899Z","value":0.002833,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:20.261313899Z","value":250.447016,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:20.261313899Z","value":0.020916,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:20.261313899Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:20.261329691Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.261340274Z","value":250.272,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.261344191Z","value":0.19876500000000874,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:20.261345357Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:20.261345357Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.261345357Z","value":250.524015,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:20.261345357Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:20.361251847Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.361251847Z","value":273.797868,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:20.361251847Z","value":0.002667,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:20.361251847Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:20.361251847Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:20.361251847Z","value":0.00825,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:20.361251847Z","value":273.773951,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:20.361251847Z","value":0.015667,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:20.361251847Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:20.36126793Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.361277305Z","value":258.864,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.361283847Z","value":14.933868000000018,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:20.361284597Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:20.361284597Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.361284597Z","value":273.862535,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:20.361284597Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:20.370762505Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.370762505Z","value":321.671698,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:20.370762505Z","value":0.001917,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:20.370762505Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:20.370762505Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:20.370762505Z","value":0.004375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:20.370762505Z","value":321.651448,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:20.370762505Z","value":0.015875,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:20.370762505Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:20.370776255Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.370785713Z","value":250.213,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.370787922Z","value":71.458698,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:20.370788672Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:20.370788672Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.370788672Z","value":321.71924,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:20.370788672Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:20.423050497Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.423050497Z","value":296.094138,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:20.423050497Z","value":0.0015,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:20.423050497Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:20.423050497Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:20.423050497Z","value":0.00925,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:20.423050497Z","value":296.075805,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:20.423050497Z","value":0.009083,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:20.423050497Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:20.423060289Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.423066956Z","value":277.274,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.423069039Z","value":18.820137999999986,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:20.423069664Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:20.423069664Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.423069664Z","value":296.149889,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:20.423069664Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:20.453199386Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.453199386Z","value":250.259182,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:20.453199386Z","value":0.001625,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:20.453199386Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:20.453199386Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:20.453199386Z","value":0.004458,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:20.453199386Z","value":250.242724,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:20.453199386Z","value":0.012,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:20.453199386Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:20.453209719Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.453215969Z","value":250.1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.453218136Z","value":0.15918200000001548,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:20.453218844Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:20.453218844Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.453218844Z","value":250.30839,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:20.453218844Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"vus","type":"Point","data":{"time":"2026-03-03T00:24:20.464334959Z","value":7,"tags":{}}}
{"metric":"vus_max","type":"Point","data":{"time":"2026-03-03T00:24:20.464334959Z","value":50,"tags":{}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:20.473328159Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.473328159Z","value":308.587836,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:20.473328159Z","value":0.0015,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:20.473328159Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:20.473328159Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:20.473328159Z","value":0.002792,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:20.473328159Z","value":308.576502,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:20.473328159Z","value":0.008542,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:20.473328159Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:20.473337617Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.473343909Z","value":308.329,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.473346367Z","value":0.25883599999997386,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:20.473347117Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:20.473347117Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.473347117Z","value":308.626544,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:20.473347117Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:20.504105546Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.504105546Z","value":263.217086,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:20.504105546Z","value":0.001625,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:20.504105546Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:20.504105546Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:20.504105546Z","value":0.006,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:20.504105546Z","value":263.196836,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:20.504105546Z","value":0.01425,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:20.504105546Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:20.504120046Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.504128921Z","value":251.394,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.504132588Z","value":11.82308599999999,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:20.504133171Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:20.504133171Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.504133171Z","value":263.271211,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:20.504133171Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:20.529814314Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.529814314Z","value":250.174682,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:20.529814314Z","value":0.001083,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:20.529814314Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:20.529814314Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:20.529814314Z","value":0.002458,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:20.529814314Z","value":250.162099,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:20.529814314Z","value":0.010125,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:20.529814314Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:20.529827189Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.529835647Z","value":250.002,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.529838814Z","value":0.17268199999998046,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:20.529839522Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:20.529839522Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.529839522Z","value":250.223182,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:20.529839522Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:20.568166361Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.568166361Z","value":250.211057,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:20.568166361Z","value":0.002166,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:20.568166361Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:20.568166361Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:20.568166361Z","value":0.003375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:20.568166361Z","value":250.196474,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:20.568166361Z","value":0.011208,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:20.568166361Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:20.568179153Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.568192153Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.568195236Z","value":0.21005700000000616,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:20.568196236Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:20.568196236Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.568196236Z","value":250.277849,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:20.568196236Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:20.615304692Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.615304692Z","value":259.143132,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:20.615304692Z","value":0.001916,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:20.615304692Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:20.615304692Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:20.615304692Z","value":0.007959,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:20.615304692Z","value":259.113048,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:20.615304692Z","value":0.022125,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:20.615304692Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:20.615323776Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.615333609Z","value":254.301,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.615337234Z","value":4.842131999999992,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:20.615338026Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:20.615338026Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.615338026Z","value":259.212007,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:20.615338026Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:20.670634515Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.670634515Z","value":276.315282,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:20.670634515Z","value":0.006542,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:20.670634515Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:20.670634515Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:20.670634515Z","value":0.028,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:20.670634515Z","value":276.271824,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:20.670634515Z","value":0.015458,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:20.670634515Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:20.670651724Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.67066464Z","value":258.515,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.67066789Z","value":17.80028200000004,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:20.670668765Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:20.670668765Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.670668765Z","value":276.391699,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:20.670668765Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:20.684212044Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.684212044Z","value":250.530431,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:20.684212044Z","value":0.001917,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:20.684212044Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:20.684212044Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:20.684212044Z","value":0.002541,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:20.684212044Z","value":250.50464,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:20.684212044Z","value":0.02325,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:20.684212044Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:20.684236294Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.684251128Z","value":250.126,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.684253919Z","value":0.4044309999999882,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:20.684259211Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:20.684259211Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.684259211Z","value":250.607223,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:20.684259211Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:20.760000182Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.760000182Z","value":250.193599,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:20.760000182Z","value":0.004417,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:20.760000182Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:20.760000182Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:20.760000182Z","value":0.003125,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:20.760000182Z","value":250.17514,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:20.760000182Z","value":0.015334,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:20.760000182Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:20.760020348Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.760030556Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.760034431Z","value":0.1925990000000013,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:20.76003539Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:20.76003539Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.76003539Z","value":250.258641,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:20.76003539Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:20.783014285Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.783014285Z","value":311.535791,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:20.783014285Z","value":0.000959,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:20.783014285Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:20.783014285Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:20.783014285Z","value":0.002166,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:20.783014285Z","value":311.513875,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:20.783014285Z","value":0.01975,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:20.783014285Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:20.783027202Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.783036952Z","value":252.989,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.783041743Z","value":58.54679100000001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:20.783042702Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:20.783042702Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.783042702Z","value":311.582708,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:20.783042702Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:20.814936463Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.814936463Z","value":265.390876,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:20.814936463Z","value":0.002416,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:20.814936463Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:20.814936463Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:20.814936463Z","value":0.004334,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:20.814936463Z","value":265.367334,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:20.814936463Z","value":0.019208,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:20.814936463Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:20.81494888Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.814959005Z","value":264.813,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.814962213Z","value":0.5778760000000034,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:20.814963088Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:20.814963088Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.814963088Z","value":265.448042,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:20.814963088Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:20.851521679Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.851521679Z","value":264.134127,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:20.851521679Z","value":0.004417,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:20.851521679Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:20.851521679Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:20.851521679Z","value":0.00275,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:20.851521679Z","value":264.119294,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:20.851521679Z","value":0.012083,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:20.851521679Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:20.851535262Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.851545971Z","value":263.429,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.851548929Z","value":0.7051270000000045,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:20.851549762Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:20.851549762Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.851549762Z","value":264.189544,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:20.851549762Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:20.890160559Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.890160559Z","value":264.656793,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:20.890160559Z","value":0.001417,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:20.890160559Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:20.890160559Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:20.890160559Z","value":0.0035,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:20.890160559Z","value":264.63971,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:20.890160559Z","value":0.013583,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:20.890160559Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:20.890175809Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.890185059Z","value":250.164,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.890188768Z","value":14.492793000000006,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:20.890189601Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:20.890189601Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.890189601Z","value":264.709252,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:20.890189601Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:20.920775822Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.920775822Z","value":256.434676,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:20.920775822Z","value":0.001875,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:20.920775822Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:20.920775822Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:20.920775822Z","value":0.00325,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:20.920775822Z","value":256.401176,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:20.920775822Z","value":0.03025,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:20.920775822Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:20.920786572Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.920793031Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.920795281Z","value":6.43367600000002,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:20.920802489Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:20.920802489Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.920802489Z","value":256.681176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:20.920802489Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:20.992891005Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.992891005Z","value":252.18093,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:20.992891005Z","value":0.003084,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:20.992891005Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:20.992891005Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:20.992891005Z","value":0.007791,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:20.992891005Z","value":252.161097,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:20.992891005Z","value":0.012042,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:20.992891005Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:20.992904255Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.992920046Z","value":251.91,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:20.99292288Z","value":0.2709299999999928,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:20.992923755Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:20.992923755Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:20.992923755Z","value":252.292139,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:20.992923755Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:21.011062779Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.011062779Z","value":308.470502,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:21.011062779Z","value":0.002542,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:21.011062779Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:21.011062779Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:21.011062779Z","value":0.005458,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:21.011062779Z","value":308.455794,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:21.011062779Z","value":0.00925,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:21.011062779Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:21.011074113Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.011081738Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.011084529Z","value":58.469502000000006,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:21.011085279Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:21.011085279Z","value":175,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.011085279Z","value":308.557586,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:21.011085279Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:21.055593279Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.055593279Z","value":276.251699,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:21.055593279Z","value":0.002083,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:21.055593279Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:21.055593279Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:21.055593279Z","value":0.005375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:21.055593279Z","value":276.233574,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:21.055593279Z","value":0.01275,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:21.055593279Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:21.055607529Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.055618821Z","value":258.483,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.055623029Z","value":17.76869899999997,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:21.055624113Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:21.055624113Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.055624113Z","value":276.314325,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:21.055624113Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:21.072940555Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.072940555Z","value":254.868511,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:21.072940555Z","value":0.001375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:21.072940555Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:21.072940555Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:21.072940555Z","value":0.002375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:21.072940555Z","value":254.854469,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:21.072940555Z","value":0.011667,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:21.072940555Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:21.072950638Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.072957388Z","value":250.232,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.072959763Z","value":4.636511000000013,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:21.07296043Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:21.07296043Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.07296043Z","value":254.91797,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:21.07296043Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:21.118947512Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.118947512Z","value":262.202963,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:21.118947512Z","value":0.001958,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:21.118947512Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:21.118947512Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:21.118947512Z","value":0.005708,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:21.118947512Z","value":262.175296,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:21.118947512Z","value":0.021959,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:21.118947512Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:21.118966387Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.118978637Z","value":250.002,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.118981512Z","value":12.200963000000002,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:21.118982595Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:21.118982595Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.118982595Z","value":262.263755,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:21.118982595Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:21.145752111Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.145752111Z","value":250.233098,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:21.145752111Z","value":0.00225,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:21.145752111Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:21.145752111Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:21.145752111Z","value":0.003083,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:21.145752111Z","value":250.212015,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:21.145752111Z","value":0.018,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:21.145752111Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:21.145766278Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.145776903Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.145779986Z","value":0.2320980000000077,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:21.145780986Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:21.145780986Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.145780986Z","value":250.28964,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:21.145780986Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:21.183404826Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.183404826Z","value":250.396515,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:21.183404826Z","value":0.00225,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:21.183404826Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:21.183404826Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:21.183404826Z","value":0.00375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:21.183404826Z","value":250.37489,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:21.183404826Z","value":0.017875,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:21.183404826Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:21.183420493Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.183432909Z","value":250.112,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.183438493Z","value":0.28451499999999896,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:21.183439659Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:21.183439659Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.183439659Z","value":250.463306,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:21.183439659Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:21.281013985Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.281013985Z","value":270.738622,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:21.281013985Z","value":0.001041,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:21.281013985Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:21.281013985Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:21.281013985Z","value":0.002375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:21.281013985Z","value":270.717872,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:21.281013985Z","value":0.018375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:21.281013985Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:21.281026651Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.281036485Z","value":259.362,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.281042568Z","value":11.376621999999998,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:21.281043318Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:21.281043318Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.281043318Z","value":270.787746,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:21.281043318Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:21.295312679Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.295312679Z","value":323.858779,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:21.295312679Z","value":0.001833,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:21.295312679Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:21.295312679Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:21.295312679Z","value":0.004792,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:21.295312679Z","value":323.836988,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:21.295312679Z","value":0.016999,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:21.295312679Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:21.295326804Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.295338429Z","value":323.673,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.295341721Z","value":0.185779000000025,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:21.295343138Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:21.295343138Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.295343138Z","value":323.964155,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:21.295343138Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:21.298360593Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.298360593Z","value":250.196723,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:21.298360593Z","value":0.002834,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:21.298360593Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:21.298360593Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:21.298360593Z","value":0.004875,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:21.298360593Z","value":250.183307,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:21.298360593Z","value":0.008541,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:21.298360593Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:21.298372635Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.298379468Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.298382218Z","value":0.19572299999998677,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:21.298382968Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:21.298382968Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.298382968Z","value":250.250474,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:21.298382968Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:21.337458182Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.337458182Z","value":250.218099,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:21.337458182Z","value":0.001125,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:21.337458182Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:21.337458182Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:21.337458182Z","value":0.003583,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:21.337458182Z","value":250.197766,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:21.337458182Z","value":0.01675,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:21.337458182Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:21.337472557Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.337483098Z","value":250.071,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.337487932Z","value":0.1470989999999972,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:21.337489348Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:21.337489348Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.337489348Z","value":250.271223,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:21.337489348Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:21.394686045Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.394686045Z","value":268.362582,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:21.394686045Z","value":0.001333,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:21.394686045Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:21.394686045Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:21.394686045Z","value":0.003542,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:21.394686045Z","value":268.344165,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:21.394686045Z","value":0.014875,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:21.394686045Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:21.39470292Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.39471492Z","value":268.18,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.394718836Z","value":0.18258199999996805,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:21.39471992Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:21.39471992Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.39471992Z","value":268.429998,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:21.39471992Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:21.45265024Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.45265024Z","value":250.294348,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:21.45265024Z","value":0.000875,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:21.45265024Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:21.45265024Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:21.45265024Z","value":0.014416,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:21.45265024Z","value":250.262349,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:21.45265024Z","value":0.017583,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:21.45265024Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:21.452666407Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.452678157Z","value":250.115,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.452682115Z","value":0.1793480000000045,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:21.452684032Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:21.452684032Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.452684032Z","value":250.348682,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:21.452684032Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"vus","type":"Point","data":{"time":"2026-03-03T00:24:21.464035271Z","value":7,"tags":{}}}
{"metric":"vus_max","type":"Point","data":{"time":"2026-03-03T00:24:21.464035271Z","value":50,"tags":{}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:21.465396228Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.465396228Z","value":300.450135,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:21.465396228Z","value":0.001416,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:21.465396228Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:21.465396228Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:21.465396228Z","value":0.002834,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:21.465396228Z","value":300.430301,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:21.465396228Z","value":0.017,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:21.465396228Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:21.465416812Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.465431312Z","value":259.152,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.465434562Z","value":41.298135,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:21.465435895Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:21.465435895Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.465435895Z","value":300.51326,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:21.465435895Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:21.495071284Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.495071284Z","value":254.227553,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:21.495071284Z","value":0.002417,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:21.495071284Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:21.495071284Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:21.495071284Z","value":0.004916,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:21.495071284Z","value":254.209345,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:21.495071284Z","value":0.013292,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:21.495071284Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:21.495084242Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.495091659Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.49509395Z","value":4.226552999999996,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:21.495094659Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:21.495094659Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.495094659Z","value":254.302344,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:21.495094659Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:21.586945656Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.586945656Z","value":307.697836,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:21.586945656Z","value":0.001625,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:21.586945656Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:21.586945656Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:21.586945656Z","value":0.004208,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:21.586945656Z","value":307.681295,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:21.586945656Z","value":0.012333,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:21.586945656Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:21.586958739Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.586967823Z","value":288.416,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.586971156Z","value":19.281836,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:21.586971948Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:21.586971948Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.586971948Z","value":307.761628,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:21.586971948Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:21.60050006Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.60050006Z","value":282.899401,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:21.60050006Z","value":0.001667,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:21.60050006Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:21.60050006Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:21.60050006Z","value":0.00375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:21.60050006Z","value":282.884234,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:21.60050006Z","value":0.011417,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:21.60050006Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:21.600511518Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.600518685Z","value":250.258,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.600520893Z","value":32.641401,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:21.600522393Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:21.600522393Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.600522393Z","value":282.953859,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:21.600522393Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:21.606999721Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.606999721Z","value":250.331057,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:21.606999721Z","value":0.001792,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:21.606999721Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:21.606999721Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:21.606999721Z","value":0.003791,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:21.606999721Z","value":250.316391,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:21.606999721Z","value":0.010875,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:21.606999721Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:21.607009637Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.607015762Z","value":250.002,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.607017887Z","value":0.3290569999999775,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:21.607021887Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:21.607021887Z","value":175,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.607021887Z","value":250.388223,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:21.607021887Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:21.645014602Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.645014602Z","value":250.235516,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:21.645014602Z","value":0.001416,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:21.645014602Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:21.645014602Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:21.645014602Z","value":0.00325,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:21.645014602Z","value":250.220974,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:21.645014602Z","value":0.011292,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:21.645014602Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:21.645025727Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.645033727Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.645036227Z","value":0.23451599999998507,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:21.64503681Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:21.64503681Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.64503681Z","value":250.28389,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:21.64503681Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:21.718039533Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.718039533Z","value":285.027066,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:21.718039533Z","value":0.0015,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:21.718039533Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:21.718039533Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:21.718039533Z","value":0.00325,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:21.718039533Z","value":285.009483,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:21.718039533Z","value":0.014333,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:21.718039533Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:21.718057075Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.718068325Z","value":273.577,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.718073241Z","value":11.450065999999993,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:21.71807395Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:21.71807395Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.71807395Z","value":285.084941,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:21.71807395Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:21.722080279Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.722080279Z","value":250.248807,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:21.722080279Z","value":0.002083,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:21.722080279Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:21.722080279Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:21.722080279Z","value":0.00375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:21.722080279Z","value":250.232432,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:21.722080279Z","value":0.012625,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:21.722080279Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:21.722094363Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.722104238Z","value":250.109,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.722106988Z","value":0.13980699999999047,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:21.722107696Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:21.722107696Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.722107696Z","value":250.303515,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:21.722107696Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:21.760352827Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.760352827Z","value":250.189849,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:21.760352827Z","value":0.001417,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:21.760352827Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:21.760352827Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:21.760352827Z","value":0.0035,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:21.760352827Z","value":250.169807,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:21.760352827Z","value":0.016542,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:21.760352827Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:21.760367827Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.760376993Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.760379577Z","value":0.1888490000000047,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:21.760380577Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:21.760380577Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.760380577Z","value":250.245266,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:21.760380577Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:21.813217569Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.813217569Z","value":264.823044,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:21.813217569Z","value":0.001166,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:21.813217569Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:21.813217569Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:21.813217569Z","value":0.00275,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:21.813217569Z","value":264.776961,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:21.813217569Z","value":0.043333,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:21.813217569Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:21.813258944Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.813281402Z","value":250.003,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.813289235Z","value":14.820043999999996,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:21.813291069Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:21.813291069Z","value":175,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.813291069Z","value":264.917334,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:21.813291069Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:21.837888921Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.837888921Z","value":251.310806,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:21.837888921Z","value":0.0015,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:21.837888921Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:21.837888921Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:21.837888921Z","value":0.002958,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:21.837888921Z","value":251.287431,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:21.837888921Z","value":0.020417,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:21.837888921Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:21.837916254Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.837925921Z","value":250.708,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.837929379Z","value":0.6028060000000153,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:21.837932337Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:21.837932337Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.837932337Z","value":251.380722,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:21.837932337Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:21.895378367Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.895378367Z","value":270.102664,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:21.895378367Z","value":0.001291,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:21.895378367Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:21.895378367Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:21.895378367Z","value":0.003584,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:21.895378367Z","value":270.077205,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:21.895378367Z","value":0.021875,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:21.895378367Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:21.895397825Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.895411075Z","value":250.122,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.895415283Z","value":19.98066399999999,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:21.895416908Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:21.895416908Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.895416908Z","value":270.166746,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:21.895416908Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:21.914749599Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.914749599Z","value":250.501224,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:21.914749599Z","value":0.001125,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:21.914749599Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:21.914749599Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:21.914749599Z","value":0.002417,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:21.914749599Z","value":250.478057,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:21.914749599Z","value":0.02075,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:21.914749599Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:21.91476839Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.914784432Z","value":250.222,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.91478864Z","value":0.27922399999999925,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:21.91478939Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:21.91478939Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.91478939Z","value":250.563557,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:21.91478939Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:21.95378777Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.95378777Z","value":250.373432,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:21.95378777Z","value":0.0015,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:21.95378777Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:21.95378777Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:21.95378777Z","value":0.005167,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:21.95378777Z","value":250.353224,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:21.95378777Z","value":0.015041,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:21.95378777Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:21.953808812Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.953821229Z","value":250.15,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.953825104Z","value":0.22343200000000252,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:21.953826187Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:21.953826187Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.953826187Z","value":250.438557,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:21.953826187Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:21.99550894Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.99550894Z","value":254.252929,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:21.99550894Z","value":0.001958,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:21.99550894Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:21.99550894Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:21.99550894Z","value":0.004542,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:21.99550894Z","value":254.232803,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:21.99550894Z","value":0.015584,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:21.99550894Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:21.995524356Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.995537564Z","value":253.83,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:21.995540523Z","value":0.4229289999999821,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:21.995541356Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:21.995541356Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:21.995541356Z","value":254.32347,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:21.995541356Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:22.049201139Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.049201139Z","value":270.15333,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:22.049201139Z","value":0.0035,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:22.049201139Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:22.049201139Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:22.049201139Z","value":0.008709,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:22.049201139Z","value":270.126663,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:22.049201139Z","value":0.017958,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:22.049201139Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:22.049220972Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.049233014Z","value":265.079,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.049237181Z","value":5.074329999999975,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:22.049238556Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:22.049238556Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.049238556Z","value":270.252705,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:22.049238556Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:22.079285153Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.079285153Z","value":261.790005,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:22.079285153Z","value":0.001167,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:22.079285153Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:22.079285153Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:22.079285153Z","value":0.007375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:22.079285153Z","value":261.764463,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:22.079285153Z","value":0.018167,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:22.079285153Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:22.079305694Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.079316861Z","value":261.56,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.079319819Z","value":0.23000500000000557,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:22.079320653Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:22.079320653Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.079320653Z","value":261.843546,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:22.079320653Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:22.106289711Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.106289711Z","value":250.188516,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:22.106289711Z","value":0.001291,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:22.106289711Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:22.106289711Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:22.106289711Z","value":0.008375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:22.106289711Z","value":250.166141,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:22.106289711Z","value":0.014,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:22.106289711Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:22.106302836Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.106312627Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.106317419Z","value":0.18751599999998803,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:22.106318252Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:22.106318252Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.106318252Z","value":250.231932,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:22.106318252Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:22.191114631Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.191114631Z","value":295.635514,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:22.191114631Z","value":0.001584,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:22.191114631Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:22.191114631Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:22.191114631Z","value":0.004083,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:22.191114631Z","value":295.609473,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:22.191114631Z","value":0.021958,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:22.191114631Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:22.191138381Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.191152631Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.191157131Z","value":45.634513999999996,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:22.191158298Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:22.191158298Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.191158298Z","value":295.696097,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:22.191158298Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:22.192883129Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.192883129Z","value":259.771464,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:22.192883129Z","value":0.002542,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:22.192883129Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:22.192883129Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:22.192883129Z","value":0.008625,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:22.192883129Z","value":259.747589,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:22.192883129Z","value":0.01525,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:22.192883129Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:22.192897463Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.192916838Z","value":250.187,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.192919879Z","value":9.584463999999969,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:22.192920796Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:22.192920796Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.192920796Z","value":259.831131,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:22.192920796Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:22.229312012Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.229312012Z","value":257.201301,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:22.229312012Z","value":0.002833,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:22.229312012Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:22.229312012Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:22.229312012Z","value":0.004459,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:22.229312012Z","value":257.1893,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:22.229312012Z","value":0.007542,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:22.229312012Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:22.229323887Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.229330179Z","value":251.469,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.22933372Z","value":5.732301000000007,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:22.229334512Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:22.229334512Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.229334512Z","value":257.246676,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:22.229334512Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:22.299270446Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.299270446Z","value":250.320265,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:22.299270446Z","value":0.003167,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:22.299270446Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:22.299270446Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:22.299270446Z","value":0.022458,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:22.299270446Z","value":250.276224,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:22.299270446Z","value":0.021583,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:22.299270446Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:22.29928678Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.299299113Z","value":250.002,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.299302738Z","value":0.3182649999999967,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:22.299303863Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:22.299303863Z","value":175,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.299303863Z","value":250.382307,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:22.299303863Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:22.299347821Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.299347821Z","value":289.695853,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:22.299347821Z","value":0.004833,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:22.299347821Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:22.299347821Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:22.299347821Z","value":0.004792,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:22.299347821Z","value":289.67952,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:22.299347821Z","value":0.011541,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:22.299347821Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:22.299361155Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.299374321Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.299378405Z","value":39.694852999999995,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:22.299379488Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:22.299379488Z","value":175,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.299379488Z","value":289.751187,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:22.299379488Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:22.338490826Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.338490826Z","value":250.145349,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:22.338490826Z","value":0.001083,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:22.338490826Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:22.338490826Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:22.338490826Z","value":0.002709,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:22.338490826Z","value":250.127182,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:22.338490826Z","value":0.015458,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:22.338490826Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:22.338504618Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.338515743Z","value":250.002,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.338518618Z","value":0.14334900000000061,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:22.338519701Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:22.338519701Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.338519701Z","value":250.190015,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:22.338519701Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:22.378210956Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.378210956Z","value":251.414556,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:22.378210956Z","value":0.001792,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:22.378210956Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:22.378210956Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:22.378210956Z","value":0.008625,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:22.378210956Z","value":251.393889,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:22.378210956Z","value":0.012042,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:22.378210956Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:22.378222331Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.378229122Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.378231622Z","value":1.4135559999999998,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:22.378232289Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:22.378232289Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.378232289Z","value":251.461723,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:22.378232289Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:22.415298921Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.415298921Z","value":250.26214,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:22.415298921Z","value":0.001584,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:22.415298921Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:22.415298921Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:22.415298921Z","value":0.002958,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:22.415298921Z","value":250.24264,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:22.415298921Z","value":0.016542,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:22.415298921Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:22.415317337Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.415326712Z","value":250.055,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.415329212Z","value":0.20713999999998123,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:22.415330254Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:22.415330254Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.415330254Z","value":251.435139,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:22.415330254Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"vus","type":"Point","data":{"time":"2026-03-03T00:24:22.464863499Z","value":7,"tags":{}}}
{"metric":"vus_max","type":"Point","data":{"time":"2026-03-03T00:24:22.464863499Z","value":50,"tags":{}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:22.466610998Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.466610998Z","value":264.595127,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:22.466610998Z","value":0.002,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:22.466610998Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:22.466610998Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:22.466610998Z","value":0.004208,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:22.466610998Z","value":264.577794,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:22.466610998Z","value":0.013125,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:22.466610998Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:22.466625164Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.466633664Z","value":263.387,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.466636039Z","value":1.2081269999999904,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:22.466637831Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:22.466637831Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.466637831Z","value":264.644419,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:22.466637831Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:22.498178843Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.498178843Z","value":257.675258,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:22.498178843Z","value":0.001209,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:22.498178843Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:22.498178843Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:22.498178843Z","value":0.003541,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:22.498178843Z","value":257.65055,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:22.498178843Z","value":0.021167,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:22.498178843Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:22.498190218Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.498196968Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.498199385Z","value":7.6742579999999805,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:22.498200135Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:22.498200135Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.498200135Z","value":257.71055,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:22.498200135Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:22.572001399Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.572001399Z","value":292.997934,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:22.572001399Z","value":0.001708,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:22.572001399Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:22.572001399Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:22.572001399Z","value":0.003834,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:22.572001399Z","value":292.9771,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:22.572001399Z","value":0.017,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:22.572001399Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:22.572017441Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.572032441Z","value":261.552,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.572037316Z","value":31.445933999999966,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:22.572039816Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:22.572039816Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.572039816Z","value":293.059642,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:22.572039816Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:22.590837965Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.590837965Z","value":273.195369,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:22.590837965Z","value":0.000917,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:22.590837965Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:22.590837965Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:22.590837965Z","value":0.0025,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:22.590837965Z","value":273.182119,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:22.590837965Z","value":0.01075,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:22.590837965Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:22.590851215Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.590857881Z","value":250.122,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.590860548Z","value":23.073369000000014,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:22.59086109Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:22.59086109Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.59086109Z","value":273.232036,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:22.59086109Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:22.608247948Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.608247948Z","value":251.576139,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:22.608247948Z","value":0.004958,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:22.608247948Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:22.608247948Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:22.608247948Z","value":0.004292,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:22.608247948Z","value":251.556639,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:22.608247948Z","value":0.015208,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:22.608247948Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:22.608265615Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.608278865Z","value":250.142,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.608282032Z","value":1.434139000000016,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:22.608282657Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:22.608282657Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.608282657Z","value":251.63289,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:22.608282657Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:22.645635913Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.645635913Z","value":250.215682,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:22.645635913Z","value":0.004292,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:22.645635913Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:22.645635913Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:22.645635913Z","value":0.002875,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:22.645635913Z","value":250.185432,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:22.645635913Z","value":0.027375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:22.645635913Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:22.645659871Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.645676246Z","value":250.005,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.645680455Z","value":0.21068199999999138,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:22.645685788Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:22.645685788Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.645685788Z","value":250.281682,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:22.645685788Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:22.684704377Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.684704377Z","value":251.01964,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:22.684704377Z","value":0.001708,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:22.684704377Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:22.684704377Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:22.684704377Z","value":0.004667,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:22.684704377Z","value":250.994723,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:22.684704377Z","value":0.02025,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:22.684704377Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:22.684728001Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.684737376Z","value":250.724,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.684740751Z","value":0.2956400000000201,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:22.684741918Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:22.684741918Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.684741918Z","value":251.073473,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:22.684741918Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:22.731388166Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.731388166Z","value":259.681465,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:22.731388166Z","value":0.001291,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:22.731388166Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:22.731388166Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:22.731388166Z","value":0.003209,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:22.731388166Z","value":259.659589,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:22.731388166Z","value":0.018667,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:22.731388166Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:22.731405458Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.731413291Z","value":250.005,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.731415791Z","value":9.676465000000007,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:22.731420208Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:22.731420208Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.731420208Z","value":259.729798,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:22.731420208Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:22.761951637Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.761951637Z","value":251.596097,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:22.761951637Z","value":0.001375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:22.761951637Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:22.761951637Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:22.761951637Z","value":0.003208,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:22.761951637Z","value":251.576639,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:22.761951637Z","value":0.01625,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:22.761951637Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:22.761962429Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.761973887Z","value":250.006,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.761976471Z","value":1.5900969999999859,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:22.761977304Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:22.761977304Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.761977304Z","value":251.639389,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:22.761977304Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:22.799238019Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.799238019Z","value":250.663556,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:22.799238019Z","value":0.000834,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:22.799238019Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:22.799238019Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:22.799238019Z","value":0.0025,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:22.799238019Z","value":250.612139,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:22.799238019Z","value":0.048917,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:22.799238019Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:22.799253394Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.799259602Z","value":250.486,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.799261727Z","value":0.17755600000000982,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:22.799262561Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:22.799262561Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.799262561Z","value":250.707098,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:22.799262561Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:22.837616191Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.837616191Z","value":250.35964,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:22.837616191Z","value":0.001875,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:22.837616191Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:22.837616191Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:22.837616191Z","value":0.003875,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:22.837616191Z","value":250.294391,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:22.837616191Z","value":0.061374,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:22.837616191Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:22.837661233Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.8376874Z","value":250.002,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.837691066Z","value":0.3576400000000035,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:22.837693316Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:22.837693316Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.837693316Z","value":250.455348,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:22.837693316Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:22.875521739Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.875521739Z","value":250.356807,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:22.875521739Z","value":0.004458,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:22.875521739Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:22.875521739Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:22.875521739Z","value":0.009959,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:22.875521739Z","value":250.322598,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:22.875521739Z","value":0.02425,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:22.875521739Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:22.875546698Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.875561489Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.875564656Z","value":0.35580699999999865,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:22.875565781Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:22.875565781Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.875565781Z","value":250.464432,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:22.875565781Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:22.915170785Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.915170785Z","value":250.594515,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:22.915170785Z","value":0.002208,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:22.915170785Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:22.915170785Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:22.915170785Z","value":0.005167,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:22.915170785Z","value":250.554598,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:22.915170785Z","value":0.03475,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:22.915170785Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:22.915188327Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.915200035Z","value":250.003,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.915203285Z","value":0.5915150000000153,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:22.915204452Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:22.915204452Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.915204452Z","value":250.650265,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:22.915204452Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:22.953035625Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.953035625Z","value":250.727682,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:22.953035625Z","value":0.002125,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:22.953035625Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:22.953035625Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:22.953035625Z","value":0.008542,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:22.953035625Z","value":250.706765,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:22.953035625Z","value":0.012375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:22.953035625Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:22.953047167Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.953054125Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.95305675Z","value":0.7266819999999825,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:22.953057375Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:22.953057375Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.953057375Z","value":250.772057,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:22.953057375Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:22.992703421Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.992703421Z","value":252.186472,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:22.992703421Z","value":0.001375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:22.992703421Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:22.992703421Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:22.992703421Z","value":0.002959,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:22.992703421Z","value":252.165971,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:22.992703421Z","value":0.017542,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:22.992703421Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:22.992719463Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.992730713Z","value":250.139,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:22.992733838Z","value":2.047471999999999,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:22.992734588Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:22.992734588Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:22.992734588Z","value":252.236846,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:22.992734588Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:23.032924175Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.032924175Z","value":253.777929,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:23.032924175Z","value":0.001041,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:23.032924175Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:23.032924175Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:23.032924175Z","value":0.003625,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:23.032924175Z","value":253.750637,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:23.032924175Z","value":0.023667,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:23.032924175Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:23.032939508Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.032949217Z","value":250.111,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.032952008Z","value":3.6669290000000103,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:23.032953008Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:23.032953008Z","value":175,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.032953008Z","value":253.818345,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:23.032953008Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:23.083825002Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.083825002Z","value":266.239667,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:23.083825002Z","value":0.002541,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:23.083825002Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:23.083825002Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:23.083825002Z","value":0.006292,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:23.083825002Z","value":266.221542,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:23.083825002Z","value":0.011833,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:23.083825002Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:23.083840711Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.083856752Z","value":265.944,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.083860919Z","value":0.29566699999998036,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:23.083861627Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:23.083861627Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.083861627Z","value":266.31175,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:23.083861627Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:23.119968177Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.119968177Z","value":264.121794,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:23.119968177Z","value":0.002459,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:23.119968177Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:23.119968177Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:23.119968177Z","value":0.006208,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:23.119968177Z","value":264.101794,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:23.119968177Z","value":0.013792,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:23.119968177Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:23.11998926Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.12000151Z","value":253.375,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.120006552Z","value":10.746794000000023,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:23.120007843Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:23.120007843Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.120007843Z","value":264.19846,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:23.120007843Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:23.159306848Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.159306848Z","value":264.481002,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:23.159306848Z","value":0.001375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:23.159306848Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:23.159306848Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:23.159306848Z","value":0.00475,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:23.159306848Z","value":264.463919,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:23.159306848Z","value":0.012333,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:23.159306848Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:23.159321723Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.15933289Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.159335723Z","value":14.480001999999985,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:23.15933689Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:23.15933689Z","value":175,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.15933689Z","value":264.52846,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:23.15933689Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:23.183588867Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.183588867Z","value":250.22664,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:23.183588867Z","value":0.00125,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:23.183588867Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:23.183588867Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:23.183588867Z","value":0.003875,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:23.183588867Z","value":250.209015,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:23.183588867Z","value":0.01375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:23.183588867Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:23.183607992Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.183618575Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.183622075Z","value":0.2256399999999985,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:23.183623534Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:23.183623534Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.183623534Z","value":250.282057,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:23.183623534Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:23.225565536Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.225565536Z","value":254.226928,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:23.225565536Z","value":0.0015,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:23.225565536Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:23.225565536Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:23.225565536Z","value":0.003625,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:23.225565536Z","value":254.208261,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:23.225565536Z","value":0.015042,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:23.225565536Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:23.225576828Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.225585036Z","value":251.549,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.225587328Z","value":2.67792799999998,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:23.225588078Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:23.225588078Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.225588078Z","value":254.268345,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:23.225588078Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:23.26185546Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.26185546Z","value":251.251431,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:23.26185546Z","value":0.001625,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:23.26185546Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:23.26185546Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:23.26185546Z","value":0.004334,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:23.26185546Z","value":251.218931,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:23.26185546Z","value":0.028166,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:23.26185546Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:23.261878419Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.261890919Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.26189421Z","value":1.2504309999999919,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:23.261895419Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:23.261895419Z","value":175,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.261895419Z","value":251.312223,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:23.261895419Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:23.299353175Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.299353175Z","value":250.242265,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:23.299353175Z","value":0.001834,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:23.299353175Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:23.299353175Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:23.299353175Z","value":0.005291,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:23.299353175Z","value":250.221182,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:23.299353175Z","value":0.015792,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:23.299353175Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:23.299366883Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.299381217Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.29938405Z","value":0.2412649999999985,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:23.299384967Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:23.299384967Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.299384967Z","value":250.310807,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:23.299384967Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:23.353579916Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.353579916Z","value":266.583333,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:23.353579916Z","value":0.002375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:23.353579916Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:23.353579916Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:23.353579916Z","value":0.006208,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:23.353579916Z","value":266.554542,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:23.353579916Z","value":0.022583,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:23.353579916Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:23.353597916Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.353609999Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.353612874Z","value":16.582332999999977,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:23.353613874Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:23.353613874Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.353613874Z","value":266.638458,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:23.353613874Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:23.383982679Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.383982679Z","value":257.6088,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:23.383982679Z","value":0.00275,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:23.383982679Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:23.383982679Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:23.383982679Z","value":0.004125,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:23.383982679Z","value":257.592758,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:23.383982679Z","value":0.011917,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:23.383982679Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:23.383993554Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.384004512Z","value":251.345,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.384006596Z","value":6.263799999999975,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:23.384007387Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:23.384007387Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.384007387Z","value":257.653341,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:23.384007387Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:23.458278443Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.458278443Z","value":255.538552,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:23.458278443Z","value":0.0045,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:23.458278443Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:23.458278443Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:23.458278443Z","value":0.003125,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:23.458278443Z","value":255.523343,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:23.458278443Z","value":0.012084,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:23.458278443Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:23.458291734Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.458303109Z","value":253.771,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.458306026Z","value":1.7675520000000233,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:23.458306651Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:23.458306651Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.458306651Z","value":255.585094,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:23.458306651Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:23.461932189Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.461932189Z","value":297.606387,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:23.461932189Z","value":0.001917,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:23.461932189Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:23.461932189Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:23.461932189Z","value":0.0055,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:23.461932189Z","value":297.585846,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:23.461932189Z","value":0.015041,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:23.461932189Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:23.461951564Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.461966106Z","value":270.997,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.461970814Z","value":26.60938699999997,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:23.461971814Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:23.461971814Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.461971814Z","value":297.671554,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:23.461971814Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"vus","type":"Point","data":{"time":"2026-03-03T00:24:23.464062479Z","value":6,"tags":{}}}
{"metric":"vus_max","type":"Point","data":{"time":"2026-03-03T00:24:23.464062479Z","value":50,"tags":{}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:23.506978605Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.506978605Z","value":265.985,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:23.506978605Z","value":0.001709,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:23.506978605Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:23.506978605Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:23.506978605Z","value":0.006333,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:23.506978605Z","value":265.968334,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:23.506978605Z","value":0.010333,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:23.506978605Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:23.506990314Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.506996689Z","value":250.204,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.506998814Z","value":15.781000000000006,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:23.506999564Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:23.506999564Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.506999564Z","value":266.024001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:23.506999564Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:23.529851292Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.529851292Z","value":250.597848,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:23.529851292Z","value":0.005083,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:23.529851292Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:23.529851292Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:23.529851292Z","value":0.007875,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:23.529851292Z","value":250.581557,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:23.529851292Z","value":0.008416,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:23.529851292Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:23.529863001Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.529869376Z","value":250.431,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.529871584Z","value":0.16684799999998745,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:23.529872251Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:23.529872251Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.529872251Z","value":250.654724,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:23.529872251Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:23.592693567Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.592693567Z","value":274.740868,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:23.592693567Z","value":0.004333,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:23.592693567Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:23.592693567Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:23.592693567Z","value":0.003292,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:23.592693567Z","value":274.723159,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:23.592693567Z","value":0.014417,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:23.592693567Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:23.592706483Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.5927224Z","value":250.999,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.592726108Z","value":23.741867999999982,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:23.592726942Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:23.592726942Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.592726942Z","value":274.791909,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:23.592726942Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:23.629702615Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.629702615Z","value":272.999285,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:23.629702615Z","value":0.0015,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:23.629702615Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:23.629702615Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:23.629702615Z","value":0.003666,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:23.629702615Z","value":272.981286,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:23.629702615Z","value":0.014333,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:23.629702615Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:23.629714824Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.629723574Z","value":267.152,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.62972724Z","value":5.847284999999999,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:23.629728032Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:23.629728032Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.629728032Z","value":273.041786,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:23.629728032Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:23.666472581Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.666472581Z","value":271.320704,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:23.666472581Z","value":0.001375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:23.666472581Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:23.666472581Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:23.666472581Z","value":0.004125,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:23.666472581Z","value":271.30037,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:23.666472581Z","value":0.016209,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:23.666472581Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:23.666490289Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.666500081Z","value":253.141,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.666503747Z","value":18.179703999999987,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:23.666504289Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:23.666504289Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.666504289Z","value":271.368954,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:23.666504289Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:23.684408647Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.684408647Z","value":250.171307,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:23.684408647Z","value":0.001916,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:23.684408647Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:23.684408647Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:23.684408647Z","value":0.005,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:23.684408647Z","value":250.157391,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:23.684408647Z","value":0.008916,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:23.684408647Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:23.684419689Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.684426564Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.684428772Z","value":0.1703070000000082,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:23.684429397Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:23.684429397Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.684429397Z","value":250.21214,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:23.684429397Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:23.722775986Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.722775986Z","value":250.304973,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:23.722775986Z","value":0.002417,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:23.722775986Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:23.722775986Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:23.722775986Z","value":0.003958,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:23.722775986Z","value":250.289182,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:23.722775986Z","value":0.011833,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:23.722775986Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:23.72279157Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.722803861Z","value":250.155,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.722807736Z","value":0.1499729999999886,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:23.722808403Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:23.722808403Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.722808403Z","value":250.357724,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:23.722808403Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:23.761279575Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.761279575Z","value":250.929931,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:23.761279575Z","value":0.001375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:23.761279575Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:23.761279575Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:23.761279575Z","value":0.002583,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:23.761279575Z","value":250.91314,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:23.761279575Z","value":0.014208,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:23.761279575Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:23.761296867Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.761308325Z","value":250.721,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.761312075Z","value":0.20893100000000686,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:23.7613127Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:23.7613127Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.7613127Z","value":250.975639,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:23.7613127Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:23.798982082Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.798982082Z","value":250.848682,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:23.798982082Z","value":0.000958,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:23.798982082Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:23.798982082Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:23.798982082Z","value":0.005625,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:23.798982082Z","value":250.83214,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:23.798982082Z","value":0.010917,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:23.798982082Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:23.798990957Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.798997082Z","value":250.653,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.79899954Z","value":0.19568200000000502,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:23.799000165Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:23.799000165Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.799000165Z","value":250.879515,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:23.799000165Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:23.845574121Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.845574121Z","value":258.974882,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:23.845574121Z","value":0.0015,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:23.845574121Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:23.845574121Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:23.845574121Z","value":0.003542,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:23.845574121Z","value":258.95584,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:23.845574121Z","value":0.0155,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:23.845574121Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:23.845589246Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.845597038Z","value":250.38,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.845599996Z","value":8.594881999999984,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:23.845600621Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:23.845600621Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.845600621Z","value":259.018757,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:23.845600621Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:23.893953451Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.893953451Z","value":267.953332,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:23.893953451Z","value":0.001917,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:23.893953451Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:23.893953451Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:23.893953451Z","value":0.00325,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:23.893953451Z","value":267.916707,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:23.893953451Z","value":0.033375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:23.893953451Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:23.893977992Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.893991326Z","value":256.442,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.894001159Z","value":11.511331999999982,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:23.894002742Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:23.894002742Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.894002742Z","value":268.021249,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:23.894002742Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:23.916700971Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.916700971Z","value":252.809013,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:23.916700971Z","value":0.001541,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:23.916700971Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:23.916700971Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:23.916700971Z","value":1.022374,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:23.916700971Z","value":251.766681,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:23.916700971Z","value":0.019958,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:23.916700971Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:23.916727846Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.916741179Z","value":250.003,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.916744179Z","value":2.806013000000007,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:23.916745513Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:23.916745513Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.916745513Z","value":252.875387,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:23.916745513Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:23.971147753Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.971147753Z","value":268.577248,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:23.971147753Z","value":0.002958,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:23.971147753Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:23.971147753Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:23.971147753Z","value":0.006209,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:23.971147753Z","value":268.554789,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:23.971147753Z","value":0.01625,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:23.971147753Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:23.971168587Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.971180795Z","value":260.055,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.971184212Z","value":8.52224799999999,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:23.971185378Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:23.971185378Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.971185378Z","value":268.635914,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:23.971185378Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:23.993113899Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.993113899Z","value":252.061013,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:23.993113899Z","value":0.00525,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:23.993113899Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:23.993113899Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:23.993113899Z","value":0.005083,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:23.993113899Z","value":252.037972,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:23.993113899Z","value":0.017958,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:23.993113899Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:23.993126483Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.993134399Z","value":250.479,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:23.993136608Z","value":1.5820129999999892,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:23.993137358Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:23.993137358Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:23.993137358Z","value":252.105805,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:23.993137358Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:24.058038922Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.058038922Z","value":278.462864,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:24.058038922Z","value":0.001042,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:24.058038922Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:24.058038922Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:24.058038922Z","value":0.004792,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:24.058038922Z","value":278.426155,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:24.058038922Z","value":0.031917,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:24.058038922Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:24.058117089Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.05813088Z","value":278.23,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.058134172Z","value":0.2328640000000064,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:24.058135297Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:24.058135297Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.058135297Z","value":278.572781,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:24.058135297Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:24.075234947Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.075234947Z","value":256.999592,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:24.075234947Z","value":0.001833,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:24.075234947Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:24.075234947Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:24.075234947Z","value":0.003917,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:24.075234947Z","value":256.980217,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:24.075234947Z","value":0.015458,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:24.075234947Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:24.075248239Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.075256781Z","value":256.82,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.075260697Z","value":0.17959200000001374,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:24.075261614Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:24.075261614Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.075261614Z","value":257.045425,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:24.075261614Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:24.106025252Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.106025252Z","value":250.230099,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:24.106025252Z","value":0.001291,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:24.106025252Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:24.106025252Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:24.106025252Z","value":0.003667,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:24.106025252Z","value":250.203682,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:24.106025252Z","value":0.02275,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:24.106025252Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:24.106041002Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.10605371Z","value":250.002,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.106059919Z","value":0.22809899999998606,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:24.106060627Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:24.106060627Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.106060627Z","value":250.279057,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:24.106060627Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:24.178478017Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.178478017Z","value":283.342276,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:24.178478017Z","value":0.00175,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:24.178478017Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:24.178478017Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:24.178478017Z","value":0.003042,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:24.178478017Z","value":283.317318,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:24.178478017Z","value":0.021916,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:24.178478017Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:24.178500642Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.178518142Z","value":252.654,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.178524976Z","value":30.68827600000003,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:24.178526267Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:24.178526267Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.178526267Z","value":283.405192,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:24.178526267Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:24.184755928Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.184755928Z","value":251.465847,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:24.184755928Z","value":0.002792,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:24.184755928Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:24.184755928Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:24.184755928Z","value":0.0105,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:24.184755928Z","value":251.43618,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:24.184755928Z","value":0.019167,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:24.184755928Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:24.18477522Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.184787386Z","value":251.132,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.18479097Z","value":0.33384699999999157,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:24.184792053Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:24.184792053Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.184792053Z","value":251.539722,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:24.184792053Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:24.221456185Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.221456185Z","value":250.242932,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:24.221456185Z","value":0.001583,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:24.221456185Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:24.221456185Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:24.221456185Z","value":0.009042,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:24.221456185Z","value":250.20914,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:24.221456185Z","value":0.02475,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:24.221456185Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:24.22147481Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.221490977Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.221494519Z","value":0.24193199999999138,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:24.221496102Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:24.221496102Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.221496102Z","value":250.301807,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:24.221496102Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:24.262195272Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.262195272Z","value":251.241223,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:24.262195272Z","value":0.001375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:24.262195272Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:24.262195272Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:24.262195272Z","value":0.003459,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:24.262195272Z","value":251.225056,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:24.262195272Z","value":0.012708,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:24.262195272Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:24.262208272Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.262216605Z","value":251.102,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.26221923Z","value":0.139222999999987,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:24.262220147Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:24.262220147Z","value":175,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.262220147Z","value":251.28689,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:24.262220147Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:24.312497725Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.312497725Z","value":264.349169,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:24.312497725Z","value":0.006791,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:24.312497725Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:24.312497725Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:24.312497725Z","value":0.004875,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:24.312497725Z","value":264.333961,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:24.312497725Z","value":0.010333,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:24.312497725Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:24.312509558Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.312520892Z","value":261.119,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.312523808Z","value":3.2301689999999894,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:24.312524725Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:24.312524725Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.312524725Z","value":264.403044,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:24.312524725Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:24.338863659Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.338863659Z","value":251.421723,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:24.338863659Z","value":0.001167,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:24.338863659Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:24.338863659Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:24.338863659Z","value":0.003,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:24.338863659Z","value":251.407431,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:24.338863659Z","value":0.011292,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:24.338863659Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:24.338879409Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.338891367Z","value":251.208,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.338893992Z","value":0.21372299999998745,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:24.338894659Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:24.338894659Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.338894659Z","value":251.468806,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:24.338894659Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:24.388152737Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.388152737Z","value":261.721046,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:24.388152737Z","value":0.002167,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:24.388152737Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:24.388152737Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:24.388152737Z","value":0.02,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:24.388152737Z","value":261.690255,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:24.388152737Z","value":0.010791,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:24.388152737Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:24.388162904Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.388170029Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.388171987Z","value":11.720045999999996,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:24.388172571Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:24.388172571Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.388172571Z","value":261.765213,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:24.388172571Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"vus","type":"Point","data":{"time":"2026-03-03T00:24:24.464331124Z","value":8,"tags":{}}}
{"metric":"vus_max","type":"Point","data":{"time":"2026-03-03T00:24:24.464331124Z","value":50,"tags":{}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:24.478108278Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.478108278Z","value":314.585122,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:24.478108278Z","value":0.001791,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:24.478108278Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:24.478108278Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:24.478108278Z","value":0.0065,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:24.478108278Z","value":314.560747,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:24.478108278Z","value":0.017875,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:24.478108278Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:24.478125486Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.478132945Z","value":299.424,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.478135361Z","value":15.161122000000034,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:24.47813607Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:24.47813607Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.47813607Z","value":314.640789,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:24.47813607Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:24.492056515Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.492056515Z","value":250.34414,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:24.492056515Z","value":0.001917,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:24.492056515Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:24.492056515Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:24.492056515Z","value":0.007958,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:24.492056515Z","value":250.32764,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:24.492056515Z","value":0.008542,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:24.492056515Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:24.492071432Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.492082015Z","value":250.054,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.492084015Z","value":0.29014000000000806,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:24.492084682Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:24.492084682Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.492084682Z","value":250.405057,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:24.492084682Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:24.495838678Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.495838678Z","value":293.859766,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:24.495838678Z","value":0.002,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:24.495838678Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:24.495838678Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:24.495838678Z","value":0.010917,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:24.495838678Z","value":293.838141,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:24.495838678Z","value":0.010708,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:24.495838678Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:24.495849886Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.495859428Z","value":262.318,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.495861636Z","value":31.541765999999996,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:24.49586222Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:24.49586222Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.49586222Z","value":293.906725,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:24.49586222Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:24.536137182Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.536137182Z","value":256.261385,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:24.536137182Z","value":0.001375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:24.536137182Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:24.536137182Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:24.536137182Z","value":0.002584,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:24.536137182Z","value":256.248759,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:24.536137182Z","value":0.010042,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:24.536137182Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:24.536147682Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.53615839Z","value":256.094,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.536161557Z","value":0.16738500000002432,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:24.536162224Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:24.536162224Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.536162224Z","value":256.302593,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:24.536162224Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:24.570332567Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.570332567Z","value":251.202557,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:24.570332567Z","value":0.001291,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:24.570332567Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:24.570332567Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:24.570332567Z","value":0.00425,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:24.570332567Z","value":251.184973,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:24.570332567Z","value":0.013334,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:24.570332567Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:24.57034515Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.57035365Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.570356608Z","value":1.2015570000000082,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:24.570357275Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:24.570357275Z","value":175,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.570357275Z","value":251.245223,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:24.570357275Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:24.647933744Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.647933744Z","value":290.991519,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:24.647933744Z","value":0.001208,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:24.647933744Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:24.647933744Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:24.647933744Z","value":0.002667,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:24.647933744Z","value":290.966227,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:24.647933744Z","value":0.022625,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:24.647933744Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:24.647959785Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.64797716Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.647980827Z","value":40.99051899999998,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:24.64798166Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:24.64798166Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.64798166Z","value":291.052935,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:24.64798166Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:24.650976866Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.650976866Z","value":255.944093,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:24.650976866Z","value":0.001125,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:24.650976866Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:24.650976866Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:24.650976866Z","value":0.005041,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:24.650976866Z","value":255.924885,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:24.650976866Z","value":0.014167,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:24.650976866Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:24.650989449Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.650999116Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.651003741Z","value":5.943093000000005,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:24.651004741Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:24.651004741Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.651004741Z","value":255.986052,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:24.651004741Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:24.729886709Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.729886709Z","value":296.653722,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:24.729886709Z","value":0.001667,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:24.729886709Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:24.729886709Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:24.729886709Z","value":0.004583,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:24.729886709Z","value":296.631305,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:24.729886709Z","value":0.017834,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:24.729886709Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:24.729897417Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.729909584Z","value":265.4,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.729912292Z","value":31.25372200000004,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:24.729913125Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:24.729913125Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.729913125Z","value":296.701014,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:24.729913125Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:24.746336443Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.746336443Z","value":274.335034,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:24.746336443Z","value":0.00125,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:24.746336443Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:24.746336443Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:24.746336443Z","value":0.003125,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:24.746336443Z","value":274.317409,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:24.746336443Z","value":0.0145,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:24.746336443Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:24.74635186Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.74635986Z","value":250.433,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.746362068Z","value":23.902034000000015,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:24.746362818Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:24.746362818Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.746362818Z","value":274.381243,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:24.746362818Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:24.812708381Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.812708381Z","value":302.408925,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:24.812708381Z","value":0.0015,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:24.812708381Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:24.812708381Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:24.812708381Z","value":0.003708,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:24.812708381Z","value":302.393092,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:24.812708381Z","value":0.012125,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:24.812708381Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:24.812720089Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.812727881Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.812730131Z","value":52.407925000000006,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:24.812730964Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:24.812730964Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.812730964Z","value":302.446383,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:24.812730964Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:24.842469936Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.842469936Z","value":294.116057,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:24.842469936Z","value":0.005792,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:24.842469936Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:24.842469936Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:24.842469936Z","value":0.002583,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:24.842469936Z","value":294.101808,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:24.842469936Z","value":0.011666,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:24.842469936Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:24.842490436Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.842501228Z","value":293.888,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.842504603Z","value":0.22805700000003526,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:24.84250552Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:24.84250552Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.84250552Z","value":294.170891,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:24.84250552Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:24.845924183Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.845924183Z","value":257.980883,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:24.845924183Z","value":0.001208,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:24.845924183Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:24.845924183Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:24.845924183Z","value":0.003,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:24.845924183Z","value":257.948591,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:24.845924183Z","value":0.029292,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:24.845924183Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:24.845933933Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.8459411Z","value":257.83,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.845943475Z","value":0.15088300000002164,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:24.8459441Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:24.8459441Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.8459441Z","value":258.015508,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:24.8459441Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:24.930057812Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.930057812Z","value":265.639834,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:24.930057812Z","value":0.001666,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:24.930057812Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:24.930057812Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:24.930057812Z","value":0.007375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:24.930057812Z","value":265.61846,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:24.930057812Z","value":0.013999,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:24.930057812Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:24.930070312Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.930082312Z","value":261.278,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.930084937Z","value":4.3618339999999876,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:24.930085854Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:24.930085854Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.930085854Z","value":265.686459,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:24.930085854Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:24.955764163Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.955764163Z","value":253.192012,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:24.955764163Z","value":0.001959,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:24.955764163Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:24.955764163Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:24.955764163Z","value":0.00525,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:24.955764163Z","value":253.162971,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:24.955764163Z","value":0.023791,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:24.955764163Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:24.955795455Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.955817788Z","value":250.144,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.955821747Z","value":3.048012,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:24.955823038Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:24.955823038Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.955823038Z","value":253.274179,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:24.955823038Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:24.971497149Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.971497149Z","value":346.363842,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:24.971497149Z","value":0.003709,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:24.971497149Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:24.971497149Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:24.971497149Z","value":0.0045,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:24.971497149Z","value":346.348258,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:24.971497149Z","value":0.011084,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:24.971497149Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:24.97150769Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.971515607Z","value":250.825,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:24.971518107Z","value":95.53884199999999,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:24.971518732Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:24.971518732Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:24.971518732Z","value":346.4048,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:24.971518732Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:25.024347849Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.024347849Z","value":283.268026,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:25.024347849Z","value":0.001333,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:25.024347849Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:25.024347849Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:25.024347849Z","value":0.003792,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:25.024347849Z","value":283.235609,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:25.024347849Z","value":0.028625,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:25.024347849Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:25.024367474Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.024381474Z","value":265.762,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.024384849Z","value":17.50602600000002,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:25.024385766Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:25.024385766Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.024385766Z","value":283.324984,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:25.024385766Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:25.056215194Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.056215194Z","value":277.354656,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:25.056215194Z","value":0.001334,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:25.056215194Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:25.056215194Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:25.056215194Z","value":0.002958,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:25.056215194Z","value":277.340448,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:25.056215194Z","value":0.01125,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:25.056215194Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:25.056225611Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.056233819Z","value":277.203,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.056236652Z","value":0.15165600000000268,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:25.056237277Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:25.056237277Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.056237277Z","value":277.394198,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:25.056237277Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:25.079279714Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.079279714Z","value":260.67513,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:25.079279714Z","value":0.001125,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:25.079279714Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:25.079279714Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:25.079279714Z","value":0.002916,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:25.079279714Z","value":260.658839,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:25.079279714Z","value":0.013375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:25.079279714Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:25.079296298Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.079305756Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.079308256Z","value":10.67413000000002,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:25.079312298Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:25.079312298Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.079312298Z","value":260.720839,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:25.079312298Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:25.106678105Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.106678105Z","value":250.44014,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:25.106678105Z","value":0.002417,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:25.106678105Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:25.106678105Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:25.106678105Z","value":0.005292,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:25.106678105Z","value":250.423557,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:25.106678105Z","value":0.011291,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:25.106678105Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:25.106689064Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.106699688Z","value":250.261,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.106702688Z","value":0.17914000000001806,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:25.106703605Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:25.106703605Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.106703605Z","value":250.484598,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:25.106703605Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:25.144923736Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.144923736Z","value":250.22739,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:25.144923736Z","value":0.002542,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:25.144923736Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:25.144923736Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:25.144923736Z","value":0.01,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:25.144923736Z","value":250.197223,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:25.144923736Z","value":0.020167,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:25.144923736Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:25.144945028Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.144953903Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.144956903Z","value":0.2263900000000092,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:25.144958069Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:25.144958069Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.144958069Z","value":250.285473,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:25.144958069Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:25.184708615Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.184708615Z","value":250.311348,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:25.184708615Z","value":0.001334,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:25.184708615Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:25.184708615Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:25.184708615Z","value":0.003541,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:25.184708615Z","value":250.289766,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:25.184708615Z","value":0.018041,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:25.184708615Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:25.184724532Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.184739324Z","value":250.165,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.18474899Z","value":0.14634800000001746,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:25.184755282Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:25.184755282Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.184755282Z","value":250.372724,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:25.184755282Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:25.221565039Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.221565039Z","value":250.198015,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:25.221565039Z","value":0.001792,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:25.221565039Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:25.221565039Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:25.221565039Z","value":0.004875,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:25.221565039Z","value":250.177348,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:25.221565039Z","value":0.015792,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:25.221565039Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:25.221575497Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.221583831Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.221586914Z","value":0.19701499999999328,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:25.221588039Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:25.221588039Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.221588039Z","value":250.246182,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:25.221588039Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:25.306893626Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.306893626Z","value":296.784722,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:25.306893626Z","value":0.001917,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:25.306893626Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:25.306893626Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:25.306893626Z","value":0.00525,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:25.306893626Z","value":296.750597,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:25.306893626Z","value":0.028875,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:25.306893626Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:25.306924792Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.306940084Z","value":250.663,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.306943542Z","value":46.12172199999998,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:25.306946167Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:25.306946167Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.306946167Z","value":296.866138,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:25.306946167Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:25.361930616Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.361930616Z","value":313.353373,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:25.361930616Z","value":0.001792,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:25.361930616Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:25.361930616Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:25.361930616Z","value":0.005542,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:25.361930616Z","value":313.331164,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:25.361930616Z","value":0.016667,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:25.361930616Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:25.361944532Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.361955532Z","value":262.629,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.361959241Z","value":50.72437299999996,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:25.361960074Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:25.361960074Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.361960074Z","value":313.403081,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:25.361960074Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:25.369491275Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.369491275Z","value":282.819776,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:25.369491275Z","value":0.001708,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:25.369491275Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:25.369491275Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:25.369491275Z","value":0.007792,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:25.369491275Z","value":282.779484,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:25.369491275Z","value":0.0325,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:25.369491275Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:25.369500775Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.369507692Z","value":282.564,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.369510109Z","value":0.2557759999999689,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:25.369510734Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:25.369510734Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.369510734Z","value":282.865902,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:25.369510734Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:25.38416122Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.38416122Z","value":258.026258,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:25.38416122Z","value":0.001958,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:25.38416122Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:25.38416122Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:25.38416122Z","value":0.005208,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:25.38416122Z","value":258.008383,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:25.38416122Z","value":0.012667,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:25.38416122Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:25.384176595Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.384188845Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.384191803Z","value":8.02525799999998,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:25.384192803Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:25.384192803Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.384192803Z","value":258.089466,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:25.384192803Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:25.415025858Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.415025858Z","value":250.858515,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:25.415025858Z","value":0.002458,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:25.415025858Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:25.415025858Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:25.415025858Z","value":0.006917,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:25.415025858Z","value":250.835181,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:25.415025858Z","value":0.016417,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:25.415025858Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:25.415040858Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.415050691Z","value":250.702,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.415053483Z","value":0.15651500000001306,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:25.415054524Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:25.415054524Z","value":175,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.415054524Z","value":250.922681,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:25.415054524Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:25.452208781Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.452208781Z","value":250.23814,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:25.452208781Z","value":0.003,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:25.452208781Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:25.452208781Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:25.452208781Z","value":0.013958,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:25.452208781Z","value":250.213057,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:25.452208781Z","value":0.011125,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:25.452208781Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:25.452221989Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.452232573Z","value":250.002,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.452235489Z","value":0.2361399999999776,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:25.452236448Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:25.452236448Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.452236448Z","value":250.296432,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:25.452236448Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"vus","type":"Point","data":{"time":"2026-03-03T00:24:25.463971312Z","value":6,"tags":{}}}
{"metric":"vus_max","type":"Point","data":{"time":"2026-03-03T00:24:25.463971312Z","value":50,"tags":{}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:25.499140362Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.499140362Z","value":257.333425,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:25.499140362Z","value":0.002417,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:25.499140362Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:25.499140362Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:25.499140362Z","value":0.004291,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:25.499140362Z","value":257.312051,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:25.499140362Z","value":0.017083,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:25.499140362Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:25.499166529Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.499174112Z","value":257.165,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.499176195Z","value":0.16842499999995653,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:25.499180195Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:25.499180195Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.499180195Z","value":257.405925,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:25.499180195Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:25.568169506Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.568169506Z","value":250.231474,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:25.568169506Z","value":0.001625,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:25.568169506Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:25.568169506Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:25.568169506Z","value":0.007917,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:25.568169506Z","value":250.203723,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:25.568169506Z","value":0.019834,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:25.568169506Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:25.568195131Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.568214047Z","value":250.002,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.568216839Z","value":0.22947399999998197,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:25.568217589Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:25.568217589Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.568217589Z","value":250.300057,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:25.568217589Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:25.568307964Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.568307964Z","value":289.204396,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:25.568307964Z","value":0.002625,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:25.568307964Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:25.568307964Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:25.568307964Z","value":0.006125,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:25.568307964Z","value":289.190313,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:25.568307964Z","value":0.007958,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:25.568307964Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:25.568319631Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.568326881Z","value":261.923,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.568334506Z","value":27.281395999999972,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:25.568335089Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:25.568335089Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.568335089Z","value":289.259687,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:25.568335089Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:25.625927993Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.625927993Z","value":269.815247,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:25.625927993Z","value":0.001791,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:25.625927993Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:25.625927993Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:25.625927993Z","value":0.00475,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:25.625927993Z","value":269.796664,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:25.625927993Z","value":0.013833,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:25.625927993Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:25.625945577Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.625959327Z","value":258.762,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.62596216Z","value":11.053246999999999,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:25.625963035Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:25.625963035Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.625963035Z","value":269.873414,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:25.625963035Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:25.644546684Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.644546684Z","value":250.185974,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:25.644546684Z","value":0.001291,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:25.644546684Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:25.644546684Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:25.644546684Z","value":0.002834,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:25.644546684Z","value":250.170932,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:25.644546684Z","value":0.012208,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:25.644546684Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:25.644559184Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.644568601Z","value":250.053,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.644571434Z","value":0.13297399999999016,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:25.644572101Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:25.644572101Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.644572101Z","value":250.22589,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:25.644572101Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:25.683814397Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.683814397Z","value":250.762848,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:25.683814397Z","value":0.001333,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:25.683814397Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:25.683814397Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:25.683814397Z","value":0.003958,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:25.683814397Z","value":250.744599,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:25.683814397Z","value":0.014291,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:25.683814397Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:25.683823856Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.683831022Z","value":250.59,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.683833481Z","value":0.17284799999998768,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:25.683834064Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:25.683834064Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.683834064Z","value":250.805349,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:25.683834064Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:25.726609565Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.726609565Z","value":254.509303,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:25.726609565Z","value":0.001916,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:25.726609565Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:25.726609565Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:25.726609565Z","value":0.004959,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:25.726609565Z","value":254.486969,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:25.726609565Z","value":0.017375,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:25.726609565Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:25.726623357Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.726630357Z","value":253.534,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.726635399Z","value":0.9753029999999967,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:25.726640774Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:25.726640774Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.726640774Z","value":254.566177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:25.726640774Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:25.761147325Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.761147325Z","value":250.181599,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:25.761147325Z","value":0.001125,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:25.761147325Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:25.761147325Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:25.761147325Z","value":0.0085,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:25.761147325Z","value":250.163182,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:25.761147325Z","value":0.009917,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:25.761147325Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:25.761158825Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.761165741Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.761168825Z","value":0.18059900000000084,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:25.761169658Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:25.761169658Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.761169658Z","value":250.227224,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:25.761169658Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:25.847916243Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.847916243Z","value":260.858672,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:25.847916243Z","value":0.001416,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:25.847916243Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:25.847916243Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:25.847916243Z","value":0.015042,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:25.847916243Z","value":260.825047,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:25.847916243Z","value":0.018583,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:25.847916243Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:25.847934327Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.847941493Z","value":257.802,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.847943952Z","value":3.056671999999992,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:25.847944785Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:25.847944785Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.847944785Z","value":260.91488,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:25.847944785Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:25.865642518Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.865642518Z","value":316.523828,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:25.865642518Z","value":0.00175,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:25.865642518Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:25.865642518Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:25.865642518Z","value":0.003417,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:25.865642518Z","value":316.483161,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:25.865642518Z","value":0.03725,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:25.865642518Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:25.865671435Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.865690102Z","value":301.374,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.865694685Z","value":15.149827999999957,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:25.865696393Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:25.865696393Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.865696393Z","value":316.607703,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:25.865696393Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:25.896730531Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.896730531Z","value":271.358871,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:25.896730531Z","value":0.00125,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:25.896730531Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:25.896730531Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:25.896730531Z","value":0.002792,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:25.896730531Z","value":271.330079,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:25.896730531Z","value":0.026,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:25.896730531Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:25.896767656Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.896786323Z","value":270.462,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.896791781Z","value":0.8968710000000328,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:25.896793406Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:25.896793406Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.896793406Z","value":271.449746,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:25.896793406Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:25.930976415Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.930976415Z","value":267.308374,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:25.930976415Z","value":0.000958,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:25.930976415Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:25.930976415Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:25.930976415Z","value":0.002584,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:25.930976415Z","value":267.257166,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:25.930976415Z","value":0.048624,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:25.930976415Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:25.931019707Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.931042165Z","value":257.523,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.931046832Z","value":9.78537399999999,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:25.93104879Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:25.93104879Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.93104879Z","value":267.399374,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:25.93104879Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:25.96161772Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.96161772Z","value":259.680548,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:25.96161772Z","value":0.001042,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:25.96161772Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:25.96161772Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:25.96161772Z","value":0.005042,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:25.96161772Z","value":259.660006,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:25.96161772Z","value":0.0155,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:25.96161772Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:25.961640762Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.961652678Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:25.961661762Z","value":9.679547999999983,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:25.961662595Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:25.961662595Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:25.961662595Z","value":259.743465,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:25.961662595Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:26.009838592Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:26.009838592Z","value":268.852248,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:26.009838592Z","value":0.001084,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:26.009838592Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:26.009838592Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:26.009838592Z","value":0.002625,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:26.009838592Z","value":268.837331,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:26.009838592Z","value":0.012292,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:26.009838592Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:26.00985155Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:26.009862258Z","value":250.102,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:26.009864925Z","value":18.75024799999997,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:26.009865967Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:26.009865967Z","value":175,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:26.009865967Z","value":268.894498,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:26.009865967Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:26.067083705Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:26.067083705Z","value":287.919189,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:26.067083705Z","value":0.001666,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:26.067083705Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:26.067083705Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:26.067083705Z","value":0.004959,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:26.067083705Z","value":287.86998,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:26.067083705Z","value":0.04425,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:26.067083705Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:26.067111579Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:26.067122746Z","value":250.001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:26.067134371Z","value":37.91818900000001,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:26.067135954Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:26.067135954Z","value":176,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:26.067135954Z","value":287.994521,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:26.067135954Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:26.079855401Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:26.079855401Z","value":259.916965,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:26.079855401Z","value":0.001583,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:26.079855401Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:26.079855401Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:26.079855401Z","value":0.002834,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:26.079855401Z","value":259.897381,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:26.079855401Z","value":0.01675,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:26.079855401Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:26.079876359Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:26.079886943Z","value":259.768,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:26.079890276Z","value":0.14896500000003243,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:26.079894734Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:26.079894734Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:26.079894734Z","value":259.974673,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:26.079894734Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:26.127961314Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:26.127961314Z","value":271.911287,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:26.127961314Z","value":0.001541,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:26.127961314Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:26.127961314Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:26.127961314Z","value":0.002917,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:26.127961314Z","value":271.891328,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:26.127961314Z","value":0.017042,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:26.127961314Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:26.127978564Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:26.127990189Z","value":250.127,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:26.127993064Z","value":21.784287000000006,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:26.127994147Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:26.127994147Z","value":178,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:26.127994147Z","value":271.958953,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:26.127994147Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:26.146870213Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:26.146870213Z","value":251.750181,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:26.146870213Z","value":0.004291,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:26.146870213Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:26.146870213Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:26.146870213Z","value":0.0095,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:26.146870213Z","value":251.696598,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:26.146870213Z","value":0.044083,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:26.146870213Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","data":{"time":"2026-03-03T00:24:26.146884296Z","value":1,"tags":{"check":"status is 200","group":"","scenario":"open_model"}}}
{"metric":"service_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:26.146893713Z","value":250.054,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"queue_time_ms","type":"Point","data":{"time":"2026-03-03T00:24:26.146896088Z","value":1.6961809999999957,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2026-03-03T00:24:26.146896838Z","value":69,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"data_received","type":"Point","data":{"time":"2026-03-03T00:24:26.146896838Z","value":177,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2026-03-03T00:24:26.146896838Z","value":251.828264,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"iterations","type":"Point","data":{"time":"2026-03-03T00:24:26.146896838Z","value":1,"tags":{"group":"","scenario":"open_model"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2026-03-03T00:24:26.18360422Z","value":1,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2026-03-03T00:24:26.18360422Z","value":250.181098,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2026-03-03T00:24:26.18360422Z","value":0.003709,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2026-03-03T00:24:26.18360422Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2026-03-03T00:24:26.18360422Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2026-03-03T00:24:26.18360422Z","value":0.010458,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2026-03-03T00:24:26.18360422Z","value":250.161015,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2026-03-03T00:24:26.18360422Z","value":0.009625,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2026-03-03T00:24:26.18360422Z","value":0,"tags":{"expected_response":"true","group":"","method":"GET","name":"http://puma:9292/work","proto":"HTTP/1.1","scenario":"open_model","status":"200","url":"http://puma:9292/work"}}}
{"metric":"checks","type":"Point","dat
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment