Resource Utilization

CPU, memory, disk I/O, and network throughput analysis for PQ Devnet clients.

This notebook examines container-level resource usage using cAdvisor metrics:

  • CPU usage (cores) per client
  • Memory working set and RSS per client
  • Disk read/write throughput
  • Disk usage over time
  • Network receive/transmit throughput
Show code
import json
from pathlib import Path

import pandas as pd
import plotly.express as px
import plotly.graph_objects as go
from plotly.subplots import make_subplots
from IPython.display import HTML, display

# Set default renderer for static HTML output
import plotly.io as pio
pio.renderers.default = "notebook"
Show code
# Resolve devnet_id
DATA_DIR = Path("../data")

if devnet_id is None:
    # Use latest devnet from manifest
    devnets_path = DATA_DIR / "devnets.json"
    if devnets_path.exists():
        with open(devnets_path) as f:
            devnets = json.load(f).get("devnets", [])
        if devnets:
            devnet_id = devnets[-1]["id"]  # Latest
            print(f"Using latest devnet: {devnet_id}")
    else:
        raise ValueError("No devnets.json found. Run 'just detect-devnets' first.")

DEVNET_DIR = DATA_DIR / devnet_id
print(f"Loading data from: {DEVNET_DIR}")
Loading data from: ../data/pqdevnet-20260626T2302Z
Show code
# Load devnet metadata
with open(DATA_DIR / "devnets.json") as f:
    devnets_data = json.load(f)
    devnet_info = next((d for d in devnets_data["devnets"] if d["id"] == devnet_id), None)

if devnet_info:
    print(f"Devnet: {devnet_info['id']}")
    print(f"Duration: {devnet_info['duration_hours']:.1f} hours")
    print(f"Time: {devnet_info['start_time']} to {devnet_info['end_time']}")
    print(f"Slots: {devnet_info['start_slot']} \u2192 {devnet_info['end_slot']}")
    print(f"Clients: {', '.join(devnet_info['clients'])}")
Devnet: pqdevnet-20260626T2302Z
Duration: 0.4 hours
Time: 2026-06-26T23:02:44+00:00 to 2026-06-26T23:26:46+00:00
Slots: 0 β†’ 1015
Clients: buildx_buildkit_multiarch0, zeam_0, zeam_1, zeam_10, zeam_11, zeam_12, zeam_13, zeam_14, zeam_15, zeam_16, zeam_17, zeam_18, zeam_19, zeam_2, zeam_20, zeam_21, zeam_22, zeam_23, zeam_24, zeam_25, zeam_26, zeam_27, zeam_28, zeam_29, zeam_3, zeam_30, zeam_31, zeam_4, zeam_5, zeam_6, zeam_7, zeam_8, zeam_9
Show code
def format_bytes(val: float) -> str:
    """Format bytes to human-readable units."""
    for unit in ["B", "KB", "MB", "GB", "TB"]:
        if abs(val) < 1024:
            return f"{val:.1f} {unit}"
        val /= 1024
    return f"{val:.1f} PB"


def format_bytes_per_sec(val: float) -> str:
    """Format bytes/s to human-readable units."""
    return format_bytes(val) + "/s"

Load DataΒΆ

Show code
# Load container resource data
data_files = {
    "cpu": "container_cpu.parquet",
    "memory": "container_memory.parquet",
    "disk_io": "container_disk_io.parquet",
    "network": "container_network.parquet",
}

# Infrastructure containers irrelevant to devnet client analysis
EXCLUDED_CONTAINERS = {"unknown", "cadvisor", "prometheus", "promtail", "node-exporter", "node_exporter", "grafana"}

# Aggregation strategy per data type:
# - cpu/memory: max (gauge-like, take the active container's value)
# - disk_io/network: sum (per-device/interface rates should be summed)
AGG_STRATEGY = {"cpu": "max", "memory": "max", "disk_io": "sum", "network": "sum"}

# Group-by columns per data type (all have container+timestamp, some have metric)
GROUP_COLS = {
    "cpu": ["container", "timestamp"],
    "memory": ["container", "metric", "timestamp"],
    "disk_io": ["container", "metric", "timestamp"],
    "network": ["container", "metric", "timestamp"],
}

dfs = {}
for key, filename in data_files.items():
    path = DEVNET_DIR / filename
    if path.exists():
        df = pd.read_parquet(path)
        df = df[~df["container"].isin(EXCLUDED_CONTAINERS)]
        # Deduplicate: multiple Prometheus series (interfaces, devices, container
        # IDs after restarts) can produce duplicate rows per container+timestamp.
        df = df.groupby(GROUP_COLS[key], as_index=False)["value"].agg(AGG_STRATEGY[key])
        dfs[key] = df
        print(f"{key}: {len(df)} records, containers: {df['container'].nunique()}")
    else:
        dfs[key] = pd.DataFrame()
        print(f"{key}: no data (file not found)")

# Unified container list: use devnet_info["clients"] which already contains
# full names with instance suffixes (e.g., "ream_0", "ream_1").
all_containers = sorted(devnet_info["clients"])
n_cols = min(len(all_containers), 2)
n_rows = -(-len(all_containers) // n_cols)
print(f"\nAll containers ({len(all_containers)}): {all_containers}")
cpu: 101 records, containers: 33
memory: 1196 records, containers: 33
disk_io: 202 records, containers: 33
network: 202 records, containers: 33

All containers (33): ['buildx_buildkit_multiarch0', 'zeam_0', 'zeam_1', 'zeam_10', 'zeam_11', 'zeam_12', 'zeam_13', 'zeam_14', 'zeam_15', 'zeam_16', 'zeam_17', 'zeam_18', 'zeam_19', 'zeam_2', 'zeam_20', 'zeam_21', 'zeam_22', 'zeam_23', 'zeam_24', 'zeam_25', 'zeam_26', 'zeam_27', 'zeam_28', 'zeam_29', 'zeam_3', 'zeam_30', 'zeam_31', 'zeam_4', 'zeam_5', 'zeam_6', 'zeam_7', 'zeam_8', 'zeam_9']

CPU UsageΒΆ

CPU cores used per container over time, derived from rate(container_cpu_usage_seconds_total[5m]).

Show code
cpu_df = dfs["cpu"]

if cpu_df.empty:
    print("No CPU data available")
else:
    fig = make_subplots(
        rows=n_rows, cols=n_cols,
        subplot_titles=all_containers,
        vertical_spacing=0.12 / max(n_rows - 1, 1) * 2,
        horizontal_spacing=0.08,
    )

    for i, container in enumerate(all_containers):
        row = i // n_cols + 1
        col = i % n_cols + 1
        cdf = cpu_df[cpu_df["container"] == container].sort_values("timestamp")
        if not cdf.empty:
            fig.add_trace(
                go.Scatter(
                    x=cdf["timestamp"], y=cdf["value"],
                    name=container, showlegend=False,
                    line=dict(color="#636EFA"),
                ),
                row=row, col=col,
            )
        else:
            fig.add_trace(
                go.Scatter(x=[None], y=[None], showlegend=False, hoverinfo='skip'),
                row=row, col=col,
            )
            _n = (row - 1) * n_cols + col
            _s = "" if _n == 1 else str(_n)
            fig.add_annotation(
                text="No data available",
                xref=f"x{_s} domain", yref=f"y{_s} domain",
                x=0.5, y=0.5,
                showarrow=False,
                font=dict(size=12, color="#999"),
            )
        fig.update_yaxes(title_text="CPU (cores)", row=row, col=col)

    fig.update_layout(
        title="CPU Usage per Container",
        height=270 * n_rows,
    )
    fig.show()
Show code
# CPU summary statistics
if not cpu_df.empty:
    cpu_summary = cpu_df.groupby("container")["value"].agg(
        ["mean", "max", "min", "std"]
    ).round(3)
    cpu_summary.columns = ["Mean (cores)", "Max (cores)", "Min (cores)", "Std Dev"]
    cpu_summary = cpu_summary.sort_index()
    display(cpu_summary)
Mean (cores) Max (cores) Min (cores) Std Dev
container
buildx_buildkit_multiarch0 1.163 4.799 0.002 2.079
zeam_0 7.273 8.117 6.657 0.756
zeam_1 4.966 5.860 4.111 0.875
zeam_10 4.360 4.681 3.839 0.455
zeam_11 4.253 4.570 3.869 0.355
zeam_12 4.539 4.598 4.507 0.051
zeam_13 3.847 3.878 3.810 0.034
zeam_14 5.416 5.430 5.397 0.017
zeam_15 4.531 4.556 4.515 0.022
zeam_16 3.614 3.641 3.565 0.043
zeam_17 3.135 3.511 2.734 0.389
zeam_18 4.333 4.408 4.294 0.065
zeam_19 3.694 3.776 3.580 0.102
zeam_2 4.695 5.037 4.121 0.500
zeam_20 4.338 4.409 4.301 0.061
zeam_21 4.324 4.394 4.288 0.061
zeam_22 3.764 3.898 3.660 0.122
zeam_23 2.116 3.406 0.929 1.242
zeam_24 4.327 4.338 4.316 0.011
zeam_25 3.992 4.299 3.655 0.323
zeam_26 3.867 4.320 3.504 0.415
zeam_27 4.335 4.405 4.299 0.061
zeam_28 4.023 4.301 3.714 0.295
zeam_29 4.345 4.413 4.310 0.059
zeam_3 1.215 1.468 1.021 0.229
zeam_30 0.853 1.077 0.490 0.317
zeam_31 0.892 1.152 0.707 0.232
zeam_4 4.306 4.342 4.287 0.032
zeam_5 4.413 4.486 4.364 0.065
zeam_6 4.349 4.413 4.307 0.056
zeam_7 1.793 2.328 1.473 0.466
zeam_8 3.104 3.499 2.443 0.576
zeam_9 4.312 4.379 4.275 0.059

Memory UsageΒΆ

Memory consumption per container, including working set (total usage minus inactive file cache) and RSS (Resident Set Size -- anonymous memory only, excluding file-backed pages). The gap between the two shows active file cache usage.

Show code
mem_df = dfs["memory"]

if mem_df.empty:
    print("No memory data available")
else:
    # Combine working_set and rss for per-container comparison
    mem_plot_df = mem_df[mem_df["metric"].isin(["working_set", "rss"])].copy()
    if not mem_plot_df.empty:
        mem_plot_df["value_mb"] = mem_plot_df["value"] / (1024 * 1024)

        fig = make_subplots(
            rows=n_rows, cols=n_cols,
            subplot_titles=all_containers,
            vertical_spacing=0.12 / max(n_rows - 1, 1) * 2,
            horizontal_spacing=0.08,
        )

        colors = {"working_set": "#636EFA", "rss": "#EF553B"}
        legend_added = set()

        for i, container in enumerate(all_containers):
            row = i // n_cols + 1
            col = i % n_cols + 1
            cdf = mem_plot_df[mem_plot_df["container"] == container]
            if not cdf.empty:
                for metric in ["working_set", "rss"]:
                    mdf = cdf[cdf["metric"] == metric].sort_values("timestamp")
                    if mdf.empty:
                        continue
                    show_legend = metric not in legend_added
                    legend_added.add(metric)
                    fig.add_trace(
                        go.Scatter(
                            x=mdf["timestamp"], y=mdf["value_mb"],
                            name=metric, legendgroup=metric,
                            showlegend=show_legend,
                            line=dict(color=colors[metric]),
                        ),
                        row=row, col=col,
                    )
            else:
                fig.add_trace(
                    go.Scatter(x=[None], y=[None], showlegend=False, hoverinfo='skip'),
                    row=row, col=col,
                )
                _n = (row - 1) * n_cols + col
                _s = "" if _n == 1 else str(_n)
                fig.add_annotation(
                    text="No data available",
                    xref=f"x{_s} domain", yref=f"y{_s} domain",
                    x=0.5, y=0.5,
                    showarrow=False,
                    font=dict(size=12, color="#999"),
                )
            fig.update_yaxes(title_text="MB", row=row, col=col)

        fig.update_layout(
            title="Memory Usage per Container (Working Set vs RSS)",
            height=270 * n_rows,
        )
        fig.show()
Show code
# Memory summary
if not mem_df.empty:
    ws_df = mem_df[mem_df["metric"] == "working_set"]
    if not ws_df.empty:
        mem_summary = ws_df.groupby("container")["value"].agg(["mean", "max"]).reset_index()
        mem_summary["Mean"] = mem_summary["mean"].apply(format_bytes)
        mem_summary["Peak"] = mem_summary["max"].apply(format_bytes)
        mem_summary = mem_summary.rename(columns={"container": "Container"})[["Container", "Mean", "Peak"]]
        mem_summary = mem_summary.sort_values("Container")
        display(mem_summary.set_index("Container"))
Mean Peak
Container
buildx_buildkit_multiarch0 2.1 GB 6.8 GB
zeam_0 12.6 GB 14.8 GB
zeam_1 3.6 GB 4.5 GB
zeam_10 2.2 GB 3.8 GB
zeam_11 1.7 GB 5.6 GB
zeam_12 8.4 GB 11.8 GB
zeam_13 4.7 GB 7.5 GB
zeam_14 6.3 GB 9.4 GB
zeam_15 5.0 GB 8.0 GB
zeam_16 1.9 GB 2.5 GB
zeam_17 1.4 GB 1.6 GB
zeam_18 2.2 GB 2.5 GB
zeam_19 2.1 GB 2.3 GB
zeam_2 9.6 GB 11.1 GB
zeam_20 4.0 GB 4.5 GB
zeam_21 3.8 GB 4.2 GB
zeam_22 4.9 GB 5.5 GB
zeam_23 1.2 GB 2.7 GB
zeam_24 3.4 GB 4.4 GB
zeam_25 2.6 GB 5.3 GB
zeam_26 2.0 GB 4.8 GB
zeam_27 3.3 GB 5.6 GB
zeam_28 6.5 GB 10.1 GB
zeam_29 2.2 GB 4.6 GB
zeam_3 897.3 MB 1.1 GB
zeam_30 729.7 MB 933.7 MB
zeam_31 739.8 MB 994.5 MB
zeam_4 5.9 GB 6.6 GB
zeam_5 6.0 GB 8.4 GB
zeam_6 3.8 GB 7.0 GB
zeam_7 1.8 GB 3.0 GB
zeam_8 1.4 GB 4.4 GB
zeam_9 2.6 GB 4.4 GB

Disk I/OΒΆ

Disk read/write throughput per container.

Show code
disk_df = dfs["disk_io"]

if disk_df.empty:
    print("No disk I/O data available")
else:
    # Read/write throughput per container
    throughput_df = disk_df[disk_df["metric"].isin(["read_throughput", "write_throughput"])].copy()
    if not throughput_df.empty:
        throughput_df["value_mb"] = throughput_df["value"] / (1024 * 1024)

        fig = make_subplots(
            rows=n_rows, cols=n_cols,
            subplot_titles=all_containers,
            vertical_spacing=0.12 / max(n_rows - 1, 1) * 2,
            horizontal_spacing=0.08,
        )

        colors = {"read_throughput": "#636EFA", "write_throughput": "#EF553B"}
        legend_added = set()

        for i, container in enumerate(all_containers):
            row = i // n_cols + 1
            col = i % n_cols + 1
            cdf = throughput_df[throughput_df["container"] == container]
            if not cdf.empty:
                for metric in ["read_throughput", "write_throughput"]:
                    mdf = cdf[cdf["metric"] == metric].sort_values("timestamp")
                    if mdf.empty:
                        continue
                    label = metric.replace("_throughput", "")
                    show_legend = metric not in legend_added
                    legend_added.add(metric)
                    fig.add_trace(
                        go.Scatter(
                            x=mdf["timestamp"], y=mdf["value_mb"],
                            name=label, legendgroup=metric,
                            showlegend=show_legend,
                            line=dict(color=colors[metric]),
                        ),
                        row=row, col=col,
                    )
            else:
                fig.add_trace(
                    go.Scatter(x=[None], y=[None], showlegend=False, hoverinfo='skip'),
                    row=row, col=col,
                )
                _n = (row - 1) * n_cols + col
                _s = "" if _n == 1 else str(_n)
                fig.add_annotation(
                    text="No data available",
                    xref=f"x{_s} domain", yref=f"y{_s} domain",
                    x=0.5, y=0.5,
                    showarrow=False,
                    font=dict(size=12, color="#999"),
                )
            fig.update_yaxes(title_text="MB/s", row=row, col=col)

        fig.update_layout(
            title="Disk I/O Throughput per Container (Read vs Write)",
            height=270 * n_rows,
        )
        fig.show()

Disk UsageΒΆ

Total disk space used per container over time.

Show code
# Disk usage uses the 'client' column (container is 'unknown' for this metric)
disk_io_path = DEVNET_DIR / "container_disk_io.parquet"
if disk_io_path.exists():
    raw_disk = pd.read_parquet(disk_io_path)
    usage_df = raw_disk[raw_disk["metric"] == "disk_usage"].copy()
    usage_df = usage_df.groupby(["client", "timestamp"], as_index=False)["value"].max()
else:
    usage_df = pd.DataFrame()

if usage_df.empty:
    print("No disk usage data available")
else:
    usage_df["value_gb"] = usage_df["value"] / (1024 * 1024 * 1024)

    # Use client names from devnet metadata
    all_clients_sorted = sorted(devnet_info["clients"])
    n_cols_du = min(len(all_clients_sorted), 2)
    n_rows_du = -(-len(all_clients_sorted) // n_cols_du)

    fig = make_subplots(
        rows=n_rows_du, cols=n_cols_du,
        subplot_titles=all_clients_sorted,
        vertical_spacing=0.12 / max(n_rows_du - 1, 1) * 2,
        horizontal_spacing=0.08,
    )

    for i, client in enumerate(all_clients_sorted):
        row = i // n_cols_du + 1
        col = i % n_cols_du + 1
        cdf = usage_df[usage_df["client"] == client].sort_values("timestamp")
        if not cdf.empty and cdf["value"].max() > 0:
            fig.add_trace(
                go.Scatter(
                    x=cdf["timestamp"], y=cdf["value_gb"],
                    name=client, showlegend=False,
                    line=dict(color="#636EFA"),
                ),
                row=row, col=col,
            )
        else:
            fig.add_trace(
                go.Scatter(x=[None], y=[None], showlegend=False, hoverinfo='skip'),
                row=row, col=col,
            )
            _n = (row - 1) * n_cols_du + col
            _s = "" if _n == 1 else str(_n)
            fig.add_annotation(
                text="No data available",
                xref=f"x{_s} domain", yref=f"y{_s} domain",
                x=0.5, y=0.5,
                showarrow=False,
                font=dict(size=12, color="#999"),
            )
        fig.update_yaxes(title_text="GB", row=row, col=col)

    fig.update_layout(
        title="Disk Usage per Client",
        height=270 * n_rows_du,
    )
    fig.show()

Network ThroughputΒΆ

Network receive (rx) and transmit (tx) throughput per container.

Show code
net_df = dfs["network"]

if net_df.empty:
    print("No network data available")
else:
    net_df["value_mb"] = net_df["value"] / (1024 * 1024)

    fig = make_subplots(
        rows=n_rows, cols=n_cols,
        subplot_titles=all_containers,
        vertical_spacing=0.12 / max(n_rows - 1, 1) * 2,
        horizontal_spacing=0.08,
    )

    colors = {"rx": "#636EFA", "tx": "#EF553B"}
    legend_added = set()

    for i, container in enumerate(all_containers):
        row = i // n_cols + 1
        col = i % n_cols + 1
        cdf = net_df[net_df["container"] == container]
        if not cdf.empty:
            for metric in ["rx", "tx"]:
                mdf = cdf[cdf["metric"] == metric].sort_values("timestamp")
                if mdf.empty:
                    continue
                show_legend = metric not in legend_added
                legend_added.add(metric)
                fig.add_trace(
                    go.Scatter(
                        x=mdf["timestamp"], y=mdf["value_mb"],
                        name=metric, legendgroup=metric,
                        showlegend=show_legend,
                        line=dict(color=colors[metric]),
                    ),
                    row=row, col=col,
                )
        else:
            fig.add_trace(
                go.Scatter(x=[None], y=[None], showlegend=False, hoverinfo='skip'),
                row=row, col=col,
            )
            _n = (row - 1) * n_cols + col
            _s = "" if _n == 1 else str(_n)
            fig.add_annotation(
                text="No data available",
                xref=f"x{_s} domain", yref=f"y{_s} domain",
                x=0.5, y=0.5,
                showarrow=False,
                font=dict(size=12, color="#999"),
            )
        fig.update_yaxes(title_text="MB/s", row=row, col=col)

    fig.update_layout(
        title="Network Throughput per Container (RX vs TX)",
        height=270 * n_rows,
    )
    fig.show()

SummaryΒΆ

Peak and average resource usage per container across the devnet.

Show code
# Build summary table across all resource types
summary_rows = []

# CPU
if not cpu_df.empty:
    for container, group in cpu_df.groupby("container"):
        summary_rows.append({
            "Container": container,
            "Avg CPU (cores)": f"{group['value'].mean():.3f}",
            "Peak CPU (cores)": f"{group['value'].max():.3f}",
        })

# Memory
if not mem_df.empty:
    ws_df = mem_df[mem_df["metric"] == "working_set"]
    for container, group in ws_df.groupby("container"):
        existing = next((r for r in summary_rows if r["Container"] == container), None)
        if existing is None:
            existing = {"Container": container}
            summary_rows.append(existing)
        existing["Avg Memory"] = format_bytes(group["value"].mean())
        existing["Peak Memory"] = format_bytes(group["value"].max())

# Network
if not net_df.empty:
    for container, group in net_df.groupby("container"):
        existing = next((r for r in summary_rows if r["Container"] == container), None)
        if existing is None:
            existing = {"Container": container}
            summary_rows.append(existing)
        rx = group[group["metric"] == "rx"]["value"]
        tx = group[group["metric"] == "tx"]["value"]
        if not rx.empty:
            existing["Avg RX"] = format_bytes_per_sec(rx.mean())
        if not tx.empty:
            existing["Avg TX"] = format_bytes_per_sec(tx.mean())

if summary_rows:
    summary_df = pd.DataFrame(summary_rows).set_index("Container").sort_index().fillna("-")
    display(summary_df)
else:
    print("No resource data available for summary.")
Avg CPU (cores) Peak CPU (cores) Avg Memory Peak Memory Avg RX Avg TX
Container
buildx_buildkit_multiarch0 1.163 4.799 2.1 GB 6.8 GB 491.4 B/s 14.5 B/s
zeam_0 7.273 8.117 12.6 GB 14.8 GB 113.5 KB/s 13.2 MB/s
zeam_1 4.966 5.860 3.6 GB 4.5 GB 252.7 KB/s 14.4 MB/s
zeam_10 4.360 4.681 2.2 GB 3.8 GB 99.8 KB/s 12.7 MB/s
zeam_11 4.253 4.570 1.7 GB 5.6 GB 106.1 KB/s 14.4 MB/s
zeam_12 4.539 4.598 8.4 GB 11.8 GB 17.3 KB/s 16.8 MB/s
zeam_13 3.847 3.878 4.7 GB 7.5 GB 149.6 KB/s 195.0 KB/s
zeam_14 5.416 5.430 6.3 GB 9.4 GB 10.7 KB/s 7.9 MB/s
zeam_15 4.531 4.556 5.0 GB 8.0 GB 5.0 KB/s 22.6 KB/s
zeam_16 3.614 3.641 1.9 GB 2.5 GB 289.8 KB/s 14.3 MB/s
zeam_17 3.135 3.511 1.4 GB 1.6 GB 125.2 KB/s 11.6 MB/s
zeam_18 4.333 4.408 2.2 GB 2.5 GB 7.1 KB/s 28.4 KB/s
zeam_19 3.694 3.776 2.1 GB 2.3 GB 213.2 KB/s 12.8 MB/s
zeam_2 4.695 5.037 9.6 GB 11.1 GB 464.7 KB/s 8.9 MB/s
zeam_20 4.338 4.409 4.0 GB 4.5 GB 4.5 KB/s 29.7 KB/s
zeam_21 4.324 4.394 3.8 GB 4.2 GB 13.8 KB/s 30.2 KB/s
zeam_22 3.764 3.898 4.9 GB 5.5 GB 456.2 KB/s 234.9 KB/s
zeam_23 2.116 3.406 1.2 GB 2.7 GB 16.4 MB/s 271.6 KB/s
zeam_24 4.327 4.338 3.4 GB 4.4 GB 19.8 KB/s 12.1 MB/s
zeam_25 3.992 4.299 2.6 GB 5.3 GB 204.3 KB/s 5.1 MB/s
zeam_26 3.867 4.320 2.0 GB 4.8 GB 103.4 KB/s 14.5 MB/s
zeam_27 4.335 4.405 3.3 GB 5.6 GB 4.2 KB/s 30.5 KB/s
zeam_28 4.023 4.301 6.5 GB 10.1 GB 335.2 KB/s 6.8 MB/s
zeam_29 4.345 4.413 2.2 GB 4.6 GB 9.1 KB/s 14.1 MB/s
zeam_3 1.215 1.468 897.3 MB 1.1 GB 25.1 MB/s 172.2 KB/s
zeam_30 0.853 1.077 729.7 MB 933.7 MB 24.5 MB/s 99.0 KB/s
zeam_31 0.892 1.152 739.8 MB 994.5 MB 24.9 MB/s 556.8 KB/s
zeam_4 4.306 4.342 5.9 GB 6.6 GB 4.6 KB/s 27.2 KB/s
zeam_5 4.413 4.486 6.0 GB 8.4 GB 4.5 KB/s 24.9 KB/s
zeam_6 4.349 4.413 3.8 GB 7.0 GB 16.1 KB/s 14.5 MB/s
zeam_7 1.793 2.328 1.8 GB 3.0 GB 4.5 MB/s 5.9 MB/s
zeam_8 3.104 3.499 1.4 GB 4.4 GB 762.6 KB/s 6.1 MB/s
zeam_9 4.312 4.379 2.6 GB 4.4 GB 32.5 KB/s 14.7 MB/s
Show code
print(f"Devnet: {devnet_id}")
if devnet_info:
    print(f"Duration: {devnet_info['duration_hours']:.1f} hours")
print(f"Containers analyzed: {cpu_df['container'].nunique() if not cpu_df.empty else 0}")
Devnet: pqdevnet-20260626T2302Z
Duration: 0.4 hours
Containers analyzed: 33