Open-source vLLM-native fact collector for AI/ML inference fleets on Kubernetes — detects GPU waste, idle capacity, and tier misplacement
Project description
piqc — Inference Fact Collector for AI Infrastructure Optimization
Most AI clusters waste 20–40% of GPU spend. piqc finds it in one command.
vLLM-native · Hardware-pluggable · Read-only · No agents · No sidecars · Nothing installed permanently
Quick Start • Features • Integrations • Commands • Output Formats • Installation
What is piqc?
piqc is an open-source inference fact collector for Kubernetes clusters. It collects model-aware facts — what is running, on what hardware, at what cost, with what waste — and surfaces them as a standardized facts bundle that feeds an optimization layer. It also prints a human-readable cost report so you can act on the results immediately without any external platform.
It is the fastest way to answer: how much GPU spend is my Kubernetes cluster wasting right now?
piqc
└── inference collector (vLLM-native) ← collects model, GPU, KV cache, throughput facts
└── hardware collector (plugin) ← vendors contribute their own telemetry
├── nvidia/ (DCGM, MIG state)
├── amd/ (ROCm metrics)
└── your-hardware/
Facts flow to the Paralleliq optimization layer, which maps waste to the model level and routes remediations through human-approved workflows. piqc runs standalone too — no platform required to get value from the cost report.
piqc surfaces three types of waste that standard Kubernetes monitoring (kubectl top, kube-state-metrics, Prometheus node exporters) cannot detect on their own:
- Idle allocation — pods holding GPU resources with near-zero compute utilization
- Tier misplacement — models running on GPU tiers with far more memory or compute than they need
- Dark capacity — GPU nodes with no pods scheduled at all
It works with any Kubernetes cluster running GPU inference workloads — GKE, EKS, AKS, on-prem, or bare metal. vLLM is the primary supported inference framework, with Ray Serve workloads also detected (GPU type, utilization, and cost — deeper runtime metrics like KV cache and token throughput are vLLM-specific). Hardware fact collection is pluggable — see Contributing a Hardware Plugin.
What you'll see
Run piqc scan against your cluster and get an instant cost report:
Discovered Inference Deployments
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━┳━━━━━━━━━━┳━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━┓
┃ Deployment ┃ Engine ┃ GPU ┃ Replicas ┃ Age ┃ GPU Util ┃ MFU ┃ $/1K tokens ┃ $/hr ┃ Idle $/day ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━╇━━━━━╇━━━━━━━━━━╇━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━┩
│ meta-llama/Llama-3-70B-Inst │ vllm │ 8xH100-SXM4-80GB ⚠ │ 2 │ 6h │ 4% │ 3.1% │ $0.0842 │ $68.00 │ $1,566.72 │
│ mistral-7b-instruct │ vllm │ 1xA100-SXM4-40GB ⚠ │ 1 │ 2d │ 11% │ 8.4% │ $0.0073 │ $2.50 │ $53.40 │
│ codellama-34b-staging │ vllm │ 4xH100-SXM4-80GB ⚠ │ 1 │ 19d │ 0% │ N/A │ N/A │ $17.00 │ $408.00 │
│ embedding-bge-large │ vllm │ 1xT4 ✓ │ 3 │ 14h │ 82% │ N/A │ $0.0002 │ $1.35 │ $5.83 │
│ unknown-runtime-7f3a2 │ unknown │ 2xA100-SXM4-80GB ? │ 1 │ 31d │ N/A │ N/A │ N/A │ $7.00 │ util unknown │
└─────────────────────────────┴─────────┴────────────────────┴──────────┴─────┴──────────┴──────┴─────────────┴────────┴──────────────┘
⚠ tier larger than this model requires · ? model size unknown — fit not checked · Age running 3+ days — confirm it's still needed
╭──────────────────────────────────── Cost Summary ──────────────────────────────────────╮
│ Total GPU spend rate : $95.85/hr │
│ │
│ Leased & idle (util <60%) : $2,033.95/day (low utilization — may reflect traffic │
│ patterns; worth investigating) │
│ Unallocated nodes : $1,152.00/day (12 GPU(s) with no pods scheduled) │
│ Tier misplacement : $721.20/day (3 model(s) on oversized GPU tier) │
│ │
│ Total estimated leak : $3,907.15/day ($1,426,110/yr at current rate) │
│ │
│ Confirmed waste : unallocated nodes, tier misplacement │
│ Signals to investigate: low GPU utilization (verify against traffic data) │
│ │
│ Avg MFU (active deployments) : 15.7% (healthy range: 30–60%) │
╰────────────────────────────────────────────────────────────────────────────────────────╯
─────────────────────────────────────────────────────────────
→ Want to know what this waste is actually costing you?
Paralleliq turns these signals into confirmed findings with dollar impact,
continuous monitoring, and automated remediation — so you act on facts, not guesses.
Running proprietary models or on-prem hardware? We'll configure it for your exact costs.
Free to get started: paralleliq.ai · Questions? sam@paralleliq.ai
piqc is free and open source. The scan gives you the full picture — what is running, on what hardware, at what cost, and where the waste is. For continuous monitoring, alerting across your fleet, and automated remediation workflows, see paralleliq.ai.
🚀 Quick Start
Option 1: Run as a Kubernetes Job (recommended)
Runs inside your cluster — no Docker auth or kubeconfig wrangling:
# Step 1 — Apply RBAC permissions (one-time setup)
kubectl apply -f https://raw.githubusercontent.com/paralleliq/piqc/main/deploy/rbac.yaml
# Step 2 — Run the scan
kubectl apply -f https://raw.githubusercontent.com/paralleliq/piqc/main/deploy/scan-job.yaml
# Step 3 — View the output
kubectl logs -f job/piqc-scan -n kube-system
# Clean up when done
kubectl delete job piqc-scan -n kube-system
The job auto-deletes itself after 10 minutes (
ttlSecondsAfterFinished: 600).
Option 2: Run with Docker from your laptop
# Export a static kubeconfig with embedded credentials
kubectl config view --raw --flatten > /tmp/piqc-kubeconfig.yaml
# Run the scan
docker run --rm \
-v /tmp/piqc-kubeconfig.yaml:/root/.kube/config \
ghcr.io/paralleliq/piqc:latest \
scan --format table
Supports both linux/amd64 and linux/arm64.
Option 3: Install from source
git clone https://github.com/paralleliq/piqc.git
cd piqc
poetry install
poetry run piqc scan --format table
✨ Features
🔍 Intelligent Discovery
- Auto-Detection: Automatically discovers vLLM and Ray Serve inference deployments across all namespaces
- Weighted Confidence Scoring: Uses multiple signals (images, env vars, CLI args, labels) with weighted scoring
- Framework Detection: Identifies vLLM and Ray Serve with high accuracy using pattern matching and heuristics
📊 Comprehensive Metrics Collection
- GPU Metrics: Real-time GPU utilization, memory, temperature, and power via
nvidia-smi - Runtime Metrics: Collects vLLM API metrics including:
- Request latency (P50, P95, P99)
- Token throughput (prefill & decode)
- KV cache utilization
- Queue depth and active requests
- Health status
💰 Waste Detection
- GPU underutilization — Deployments below 60% utilization threshold, with dollar waste per day and annualized
- Dark capacity — GPU nodes with no pods scheduled (paying for nodes sitting empty)
- Tier misplacement — Models running on an oversized GPU tier, with estimated cost delta per day
- Fragmentation — Nodes with free GPU slots too small to fit any running model
- Pending GPU pods — Workloads blocked from scheduling, shown with wait time
- Cost Summary panel — Total spend rate, all waste categories, total estimated leak per day and per year
- MFU (Model FLOPS Utilization) — Observed compute vs. theoretical GPU peak per deployment
- Cost per 1K tokens — GPU spend translated into a business metric comparable to API pricing
📄 Multiple Output Formats
| Format | Description |
|---|---|
| Table | Cost report with MFU, $/1K tokens, idle waste (default) |
| YAML | Kubernetes-style inference deployment files |
| JSON | Machine-readable JSON output |
| PIQC Facts | Standardized facts bundle for control plane integration |
🚀 Production-Ready
- Parallel Processing: Multi-threaded scanning with configurable workers
- RBAC Support: Pre-configured ClusterRole and ServiceAccount manifests
- Flexible Modes: Auto-detect, remote (kubeconfig), or in-cluster execution
- Timeout Controls: Configurable operation timeouts
- Docker Image: Pre-built multi-platform image (
linux/amd64+linux/arm64) on GitHub Container Registry
🔌 Hardware Plugins
piqc's hardware fact collection is designed to be pluggable. The inference collector (vLLM) is maintained in this repo. Hardware vendors contribute their own collectors using the same fact schema — so AMD, Intel, and custom hardware telemetry can be added without touching the core.
|
🔴 AMD GPU Plugin Hardware plugin for AMD Instinct GPUs via
|
🌐 LLM-D (LLM-Distributed) Discovery and documentation for distributed LLM inference:
|
Want to contribute a hardware plugin? See Contributing a Hardware Plugin.
🔌 Orchestrator Integrations
dstack
paralleliq-dstack-plugin (PyPI) hooks into dstack's plugin system. When a GPU fleet or task is applied against a dstack project on a Kubernetes backend, it surfaces the piqc scan commands so you know to check for waste on the cluster dstack just provisioned onto.
pip install paralleliq-dstack-plugin
dstack discovers it automatically via Python entry points — no further configuration required. See the plugin repo for what it does today and its current limitations.
📋 Commands
piqc scan
Scan your Kubernetes cluster for inference workloads and surface GPU waste.
piqc scan [OPTIONS]
Scan Options
| Option | Default | Description |
|---|---|---|
--kubeconfig PATH |
~/.kube/config |
Path to kubeconfig file |
--context TEXT |
current | Kubernetes context to use |
-n, --namespace TEXT |
all | Specific namespace to scan |
--format [yaml|json|table] |
yaml |
Output format |
-o, --output PATH |
./output |
Output directory for generated files |
Collection Options
| Option | Default | Description |
|---|---|---|
--collect-runtime |
false |
Collect runtime metrics via vLLM API |
--no-exec |
false |
Disable pod exec (skip GPU metrics) |
--no-logs |
false |
Disable log reading |
--aggregate/--no-aggregate |
aggregate |
Aggregate metrics across pod replicas |
--contribute-benchmarks |
false |
Contribute anonymized GPU/model performance data to the Paralleliq benchmark dataset |
Output Options
| Option | Default | Description |
|---|---|---|
--combined |
false |
Generate single combined output file |
--output-piqc |
false |
Generate piqc-facts.json (PIQC v0.1 schema) |
Execution Options
| Option | Default | Description |
|---|---|---|
--timeout INT |
30 |
Operation timeout in seconds |
--workers INT |
10 |
Number of parallel workers |
--mode [auto|remote|incluster|dry-run] |
auto |
Execution mode |
-v, --verbose |
false |
Enable verbose output |
--debug |
false |
Enable debug mode with detailed trace |
Examples
# Basic scan — discover all vLLM deployments and surface waste
piqc scan
# Scan specific namespace with JSON output
piqc scan -n production --format json
# Quick scan without GPU metrics (faster)
piqc scan --no-exec
# Collect runtime metrics from vLLM API
piqc scan --collect-runtime
# Generate PIQC facts bundle for control plane integration
piqc scan --output-piqc -o ./facts
# Table output to console (human-readable)
piqc scan --format table
# Custom kubeconfig and context
piqc scan --kubeconfig /path/to/config --context my-cluster
# Contribute anonymized GPU/model benchmarks to Paralleliq dataset
piqc scan --contribute-benchmarks
piqc test-connection
Test connection to Kubernetes cluster and verify required permissions.
piqc test-connection [OPTIONS]
| Option | Default | Description |
|---|---|---|
--kubeconfig PATH |
~/.kube/config |
Path to kubeconfig file |
--context TEXT |
current | Kubernetes context to use |
piqc version
piqc version
📁 Output Formats
Table Format (default)
Run piqc scan --format table — no flags required. See the output example above.
GPU column markers (tier fit, shown inline next to the GPU type):
| Symbol | Meaning |
|---|---|
✓ |
Model is on an appropriate GPU tier for its size |
⚠ |
Model is over-provisioned for an oversized GPU tier |
? |
Parameter count not parseable from model name — fit not checked |
Age column: shown as 5m / 2h / 19d since the deployment's pods were created. Deployments running 3+ days are highlighted — long-running GPU allocations are easy to forget about and keep billing unnoticed.
YAML Format
Generates individual Kubernetes-style YAML files for each deployment:
apiVersion: piqc/v1
kind: InferenceDeployment
metadata:
name: vllm-llama-7b
namespace: inference
collectionTimestamp: "2024-01-07T12:00:00Z"
collectorVersion: "1.0.0"
model:
name: meta-llama/Llama-2-7b-hf
architecture: llama
parameters: "7B"
identificationConfidence: 0.95
engine:
name: vllm
version: "0.4.0"
detectionConfidence: 0.95
inference:
precision: float16
tensorParallelSize: 4
maxModelLen: 4096
gpuMemoryUtilization: 0.90
resources:
replicas: 2
gpuCount: 4
gpus:
- type: A100-SXM4-80GB
memoryTotal: "80GB"
utilization: 87
memoryUsed: 72000
runtimeState:
vllm:
healthStatus: healthy
kvCacheUsagePercent: 45.2
avgPromptThroughput: 1250.5
avgGenerationThroughput: 85.3
PIQC Facts Bundle
With --output-piqc, generates a standardized facts bundle for integration with the Paralleliq optimization layer:
{
"schemaVersion": "piqc-scan.v0.1",
"generatedAt": "2026-06-20T12:00:00Z",
"tool": {
"name": "piqc",
"version": "1.1.0"
},
"cluster": {
"context": "my-context",
"name": "my-cluster"
},
"objects": [
{
"workloadId": "ns/inference/deployment/vllm-llama-7b",
"kind": "Deployment",
"name": "vllm-llama-7b",
"namespace": "inference",
"facts": {
"runtime.engineType": {"value": "vllm", "dataConfidence": "high"},
"hardware.gpuType": {"value": "A100-SXM4-80GB", "dataConfidence": "high"},
"hardware.gpuCount": {"value": 4, "dataConfidence": "high"},
"obs.gpu.memUtilAvgPct": {"value": 87, "dataConfidence": "high"},
"obs.vllm.kvCacheUsagePct": {"value": 45.2, "dataConfidence": "high", "units": "%"},
"obs.vllm.requestsRunning": {"value": 3, "dataConfidence": "high"},
"obs.vllm.requestsWaiting": {"value": 0, "dataConfidence": "high"},
"k8s.ageHours": {"value": 18.5, "dataConfidence": "high", "units": "hours"}
}
},
{
"workloadId": "ns/gpu-pool/node/h100-node-07",
"kind": "Node",
"name": "h100-node-07",
"namespace": "gpu-pool",
"facts": {
"hardware.gpuType": {"value": "nvidia-h100-80gb", "dataConfidence": "high"},
"hardware.gpuCount": {"value": 4, "dataConfidence": "high"},
"node.allocatedGpuCount": {"value": 2, "dataConfidence": "high"},
"node.unallocatedGpuCount": {"value": 2, "dataConfidence": "high"}
}
}
]
}
The first object is a normal scanned workload. The second is a node-scoped object — emitted when a node has GPU capacity no pod has requested (the "Dark capacity" case under Waste Detection above); it carries no runtime.*/model.* facts since it isn't describing a running inference workload.
📥 Installation
Prerequisites
- Python: 3.11 or higher
- Kubernetes Access: Valid kubeconfig with cluster access
- Poetry: For development installation
Install from Source
git clone https://github.com/paralleliq/piqc.git
cd piqc
poetry install
poetry run piqc --version
Install for Development
git clone https://github.com/paralleliq/piqc.git
cd piqc
poetry install --with dev
poetry run pytest tests/unit -v
🔐 Kubernetes RBAC Requirements
piqc is read-only. It never creates, modifies, or deletes any resource in your cluster. The only write permission is pods/exec (to run nvidia-smi inside pods for GPU metrics) — and that can be disabled with --no-exec.
kubectl apply -f https://raw.githubusercontent.com/paralleliq/piqc/main/deploy/rbac.yaml
| Resource | Verbs | Purpose |
|---|---|---|
pods |
get, list | Discover inference workloads |
pods/exec |
create | Run nvidia-smi for GPU metrics |
pods/log |
get | Enhanced framework detection |
namespaces |
get, list | Scan multiple namespaces |
deployments |
get, list | Identify deployment metadata |
statefulsets |
get, list | Identify StatefulSet workloads |
services |
get, list | Endpoint detection |
🔧 Execution Modes
| Mode | Description |
|---|---|
auto |
Automatically detect if running in-cluster or remotely |
remote |
Force remote mode (uses kubeconfig) |
incluster |
Force in-cluster mode (uses ServiceAccount) |
dry-run |
Simulate scan without cluster access |
🐛 Troubleshooting
Docker Auth Plugin Errors (GKE / EKS / AKS)
Use the in-cluster Job approach (Option 1 in Quick Start) — it runs inside the cluster and needs no auth plugins. Or export a static kubeconfig:
kubectl config view --raw --flatten > /tmp/piqc-kubeconfig.yaml
docker run --rm -v /tmp/piqc-kubeconfig.yaml:/root/.kube/config ghcr.io/paralleliq/piqc:latest scan
RBAC Permission Errors
kubectl auth can-i list pods --all-namespaces
kubectl auth can-i create pods/exec -n <namespace>
kubectl apply -f https://raw.githubusercontent.com/paralleliq/piqc/main/deploy/rbac.yaml
GPU Metrics Unavailable
piqc scan --no-exec
📚 Project Structure
piqc/
├── src/piqc/
│ ├── cli/ # CLI commands (scan, test-connection, version)
│ ├── collectors/ # Data collectors (vLLM config, GPU metrics)
│ ├── core/ # Core logic (orchestrator, discovery, k8s client)
│ ├── generators/ # Output generators (YAML, JSON, Table, PIQC)
│ ├── models/ # Pydantic data models (inference deployment, PIQC schema)
│ ├── parsers/ # Configuration parsers (vLLM)
│ └── utils/ # Utilities (logging, exceptions)
├── tests/
│ ├── unit/ # Unit tests
│ └── integration/ # Integration tests
├── rbac/ # Kubernetes RBAC manifests
├── docs/ # Documentation
└── examples/ # Example scan outputs and facts bundles
What to do with the results
piqc tells you what's wrong. The Paralleliq optimization layer closes the loop — it ingests the piqc facts bundle, maps waste to the model level, and routes remediations through human-approved workflows with a full audit trail.
→ paralleliq.ai · info@paralleliq.ai
Contributing a Hardware Plugin
piqc's hardware fact collection is designed so hardware vendors and community contributors can add support for their own GPU or accelerator without modifying the core inference collector.
A hardware plugin is a collector that:
- Reads telemetry from the target hardware (via
nvidia-smi,rocm-smi, vendor BMC API, or equivalent) - Emits facts using the piqc fact schema (
hardware.gpuType,hardware.gpuCount,observed.gpuUtilization, etc.) - Lives under
src/piqc/collectors/hardware/<vendor>/
The vLLM inference collector is the reference implementation. If you represent a hardware vendor or want to contribute support for AMD, Intel Gaudi, or another accelerator, open an issue or email info@paralleliq.ai.
📄 License
Apache License 2.0 — see LICENSE for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file piqc-1.2.0.tar.gz.
File metadata
- Download URL: piqc-1.2.0.tar.gz
- Upload date:
- Size: 81.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2ad48aca214a48544f35cd096db5e136a0845aa78ba75b4000667c673fc874b
|
|
| MD5 |
f1e7963899788241c120c1aacc386875
|
|
| BLAKE2b-256 |
23afffb640664b07dfbe1c577a793d4aa7644c54037d3a18aec55fde514e1489
|
Provenance
The following attestation bundles were made for piqc-1.2.0.tar.gz:
Publisher:
publish-pypi.yml on paralleliq/piqc
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
piqc-1.2.0.tar.gz -
Subject digest:
e2ad48aca214a48544f35cd096db5e136a0845aa78ba75b4000667c673fc874b - Sigstore transparency entry: 1886279058
- Sigstore integration time:
-
Permalink:
paralleliq/piqc@dbc64ecca23797d0a31da0a941b0590c33f5a926 -
Branch / Tag:
refs/tags/v1.2.0 - Owner: https://github.com/paralleliq
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@dbc64ecca23797d0a31da0a941b0590c33f5a926 -
Trigger Event:
push
-
Statement type:
File details
Details for the file piqc-1.2.0-py3-none-any.whl.
File metadata
- Download URL: piqc-1.2.0-py3-none-any.whl
- Upload date:
- Size: 86.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cda8402d042c6600df8f40ed88243ecf41ee5f44b70a99bf6df2da2bcc5ad910
|
|
| MD5 |
4be9d44a85ea6555b20d1fc2cd2d79a8
|
|
| BLAKE2b-256 |
1d2404a2edcb9d937be88b33110b8fb7a209578333c71d8a221a7d2f4b37e831
|
Provenance
The following attestation bundles were made for piqc-1.2.0-py3-none-any.whl:
Publisher:
publish-pypi.yml on paralleliq/piqc
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
piqc-1.2.0-py3-none-any.whl -
Subject digest:
cda8402d042c6600df8f40ed88243ecf41ee5f44b70a99bf6df2da2bcc5ad910 - Sigstore transparency entry: 1886279127
- Sigstore integration time:
-
Permalink:
paralleliq/piqc@dbc64ecca23797d0a31da0a941b0590c33f5a926 -
Branch / Tag:
refs/tags/v1.2.0 - Owner: https://github.com/paralleliq
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@dbc64ecca23797d0a31da0a941b0590c33f5a926 -
Trigger Event:
push
-
Statement type: