Valqore DocsDocs
CLI Referencevalqore checkup

valqore checkup

Full environment health check in one command.

valqore checkup

Full environment health check in one command. Auto-detects cloud providers, runs relevant checks, and prints a prioritized report.

Usage

valqore checkup [OPTIONS]

Options

FlagDefaultDescription
--scope <scope>allLimit checks: all, aws, k8s, security, cost, or reliability.
--region <region>autoAWS region to check.
--profile <name>defaultAWS CLI profile name.
--output <format>richOutput format: rich (terminal) or json.

Example Output

$ valqore checkup
 
  ╔══════════════════════════════════════════════════════════╗
  ║              VALQORE ENVIRONMENT CHECKUP                ║
  ╚══════════════════════════════════════════════════════════╝
 
  Detected: AWS (us-east-1) · Kubernetes (eks-prod) · 3 namespaces
 
  Running checks ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 24/24 ✓
 
  ┌─────────────────────────────────────────────────────────┐
  │ INCIDENTS (3 correlated from 11 findings)               │
  ├─────────────────────────────────────────────────────────┤
  │ ● CRITICAL  Over-privileged service account             │
  │   Fix: Scope to namespace-level Role                    │
  │ ▲ WARNING   Cost anomaly — idle resources               │
  │   Est. waste: $124.50/mo                                │
  │ ○ INFO      Region carbon intensity above average       │
  └─────────────────────────────────────────────────────────┘
 
  Score: 71/100  │  Est. Cost: $892/mo  │  Carbon: 48 kg CO₂e/mo

Scoped Examples

# Cost-only checkup
valqore checkup --scope cost
 
# Security-only checkup
valqore checkup --scope security
 
# JSON output for CI pipelines
valqore checkup --output json | jq '.incidents[] | select(.severity == "CRITICAL")'
Was this helpful?
Valqore Docs
Copyright © Cruip. All rights reserved.