Argus Commands

May 29, 2026 · View on GitHub

Commands for inspecting and modifying JVM runtime internals without a restart. This category covers VM flags, unified logging control, JMX management, JIT compiler state, native library inspection, symbol and string table statistics, class search, Spring Boot integration, and operations tooling (doctor, suggest, ci, compare, explain, events, init). Use these commands to tune a live JVM, diagnose startup anomalies, or integrate Argus into CI/CD pipelines.

Table of Contents


argus vmflag <pid>

Shows non-default VM flags with optional filter. Supports runtime flag modification.

$ argus vmflag 39113 --filter=Heap
 argus vmflag
 Shows all non-default VM flags. Use --set to modify manageable flags at runtime.

╭─ VM Flags ── pid:39113 ── source:jdk ────────────────────────────────────────╮
│                                                                              │
│ Flag                                        Value                            │
│ ──────────────────────────────────────────────────────────────────────       │
│ G1HeapRegionSize                            1048576                          │
│ HeapDumpOnOutOfMemoryError                  true                             │
│ InitialHeapSize                             268435456                        │
│ MaxHeapSize                                 536870912                        │
│ MinHeapDeltaBytes                           1048576                          │
│ MinHeapSize                                 268435456                        │
│ NonNMethodCodeHeapSize                      5839564                          │
│ NonProfiledCodeHeapSize                     122909338                        │
│ ProfiledCodeHeapSize                        122909338                        │
│ SoftMaxHeapSize                             536870912                        │
│                                                                              │
│ Total: 28 flags  filter: "Heap"  shown: 10                                   │
╰──────────────────────────────────────────────────────────────────────────────╯

Options:

  • --filter=<pattern> — Search flag names
  • --set FlagName=value — Modify a manageable flag at runtime
  • --set +FlagName / --set -FlagName — Toggle boolean flags

argus vmset <pid> Flag=value

Sets a manageable VM flag on a live JVM without restart. Requires confirmation unless --yes is passed.

$ argus vmset 39113 HeapDumpOnOutOfMemoryError=true --yes

Options:

  • --yes — Skip confirmation prompt

argus vmlog <pid> [options]

Controls JVM unified logging (GC, JIT, safepoint) on a running JVM without restart.

# Show current log configuration
$ argus vmlog 39113

# Enable GC logging to stdout
$ argus vmlog 39113 what=gc=info output=#0

# Enable JIT compilation logging
$ argus vmlog 39113 what=jit+compilation=debug

argus sysprops <pid>

Displays JVM system properties with optional filter.

$ argus sysprops 39113 --filter=java.version
 argus sysprops
 Displays JVM system properties (-D flags and runtime defaults). Use --filter to search.

╭─ System Properties ── pid:39113 ── source:jdk ───────────────────────────────╮
│                                                                              │
│ Key                                     Value                                │
│ ──────────────────────────────────────────────────────────────────────       │
│ java.version                            21.0.9                               │
│ java.version.date                       2025-10-21                           │
│                                                                              │
│ Total: 55 properties  filter: "java.version"  shown: 2                       │
╰──────────────────────────────────────────────────────────────────────────────╯

Options:

  • --filter=<pattern> — Case-insensitive search on key or value

argus compiler <pid>

Shows JIT compiler status and code cache usage. High code cache usage may cause deoptimization.

$ argus compiler 39113
 argus compiler
 Shows JIT compiler status and code cache usage. High code cache usage may cause deoptimization.

╭─ JIT Compiler ── pid:39113 ── source:auto ───────────────────────────────────╮
│                                                                              │
│ ✔ Compilation enabled                                                        │
│                                                                              │
│ Code Cache  [█████░░░░░░░░░░░░░░░]  233M / 1.0G  (23%)                      │
│   Max Used: 342M    Free: 791M                                               │
│                                                                              │
│ Blobs: 35.3K    nmethods: 32.9K    adapters: 2.3K                            │
╰──────────────────────────────────────────────────────────────────────────────╯

Warnings:

  • Code cache usage > 80% — may trigger deoptimization

argus compilerqueue <pid>

Shows the current JIT compilation queue via jcmd Compiler.queue. C2 methods are highlighted red, C1 methods yellow.

$ argus compilerqueue 39113
$ argus compilerqueue 39113 --format=json
╭─ JIT Compiler Queue ── pid:39113 ────────────────────────────────────────────╮
│                                                                              │
│ Contents of C2 compile queue:                                                │
│   com.example.App.processRequest (3)                                         │
│   com.example.db.Query.execute (3)                                           │
│                                                                              │
│ Contents of C1 compile queue:                                                │
│   java.util.HashMap.getNode (1)                                              │
╰──────────────────────────────────────────────────────────────────────────────╯

Options:

  • --format=json — JSON output with queue array of raw entry strings

argus mbean <pid>

MBean browser — inspect JVM MBeans via JMX attach. Connects to the local JVM process, then browses domains, lists beans, and reads attributes.

$ argus mbean 12345
$ argus mbean 12345 --list
$ argus mbean 12345 --domain=java.lang
$ argus mbean 12345 --name="java.lang:type=Memory"
$ argus mbean 12345 --name="java.lang:type=Memory" --attr=HeapMemoryUsage
╭─ MBean Domains ── 8 domains ────────────────────────────────────────────────╮
│                                                                              │
│   8 total MBeans                                                             │
│                                                                              │
│   com.sun.management  (3 beans)                                              │
│   java.lang           (24 beans)                                             │
│   java.nio            (2 beans)                                              │
│   java.util.logging   (1 beans)                                              │
╰──────────────────────────────────────────────────────────────────────────────╯

Options:

  • --list — List all MBean names
  • --domain=<name> — List all MBeans in a domain
  • --name=<objectName> — Show all attributes of a specific MBean
  • --attr=<name> — Show only the named attribute
  • --format=json — JSON output

Note: requires JMX attach; automatically starts the local management agent if not running. If attach fails, run argus jmx <pid> start-local first.


argus jmx <pid> [subcommand]

Controls JMX Management Agent. Enables VisualVM/JConsole to connect to a running JVM.

# Check status
$ argus jmx 39113

# Start local JMX (same-host only)
$ argus jmx 39113 start-local

# Start remote JMX
$ argus jmx 39113 start --port=9999 --no-auth --no-ssl

# Stop JMX agent
$ argus jmx 39113 stop

Subcommands:

  • status (default) — Show JMX agent status
  • start-local — Start local-only JMX agent
  • start — Start remote JMX agent (opens network port)
  • stop — Stop JMX agent

argus dynlibs <pid>

Lists native libraries loaded in the JVM process, grouped by category (JDK/App/System).

$ argus dynlibs 39113

Options:

  • --filter=<pattern> — Filter library paths

argus stringtable <pid>

Shows interned string table statistics. Useful for tuning -XX:StringTableSize.

$ argus stringtable 39113
 argus stringtable
 Shows interned string table statistics. Useful for tuning -XX:StringTableSize.

╭─ String Table ── pid:39113 ── source:auto ───────────────────────────────────╮
│                                                                              │
│ Category                   Count        Size                                 │
│ ────────────────────────────────────────────                                 │
│ Buckets                     4.3K          0B                                 │
│ Entries                    16.7K          0B                                 │
│ Literals                  242.8K         19M                                 │
│ ────────────────────────────────────────────                                 │
│ Total                                    24M                                 │
│                                                                              │
│ Avg literal size: 82.0 bytes                                                 │
╰──────────────────────────────────────────────────────────────────────────────╯

argus symboltable <pid>

Shows JVM symbol table statistics (class/method/field names). Complements stringtable.

$ argus symboltable 39113
 argus symboltable
 Shows JVM symbol table statistics (class/method/field names). Complements stringtable.

╭─ Symbol Table ── pid:39113 ── source:auto ───────────────────────────────────╮
│                                                                              │
│ Category                   Count        Size                                 │
│ ────────────────────────────────────────────                                 │
│ Buckets                    20.4K          0B                                 │
│ Entries                    77.5K          0B                                 │
│ Literals                    1.3M         95M                                 │
│ ────────────────────────────────────────────                                 │
│ Total                                   117M                                 │
│                                                                              │
│ Avg literal size: 76.0 bytes                                                 │
╰──────────────────────────────────────────────────────────────────────────────╯

argus sc <pid> <pattern>

Searches loaded classes by pattern. Useful for diagnosing classpath conflicts and finding duplicate class loading.

$ argus sc 12345 "*.UserService"
$ argus sc 12345 "org.slf4j.*"
$ argus sc 12345 "*.UserService" --limit=100
╭─ Search Classes ── pid:12345 ── pattern:*.UserService ───────────────────────╮
│                                                                              │
│     #    Instances         Bytes  Class                                      │
│ ─────────────────────────────────────────────────────────────────────────── │
│     1          1            480B  com.example.UserService                    │
│     2          1            480B  com.example.legacy.UserService             │
│                                                                              │
│ 2 match(es)                                                                  │
╰──────────────────────────────────────────────────────────────────────────────╯

Options:

  • --limit=N — Maximum results to display (default: 50)
  • --source=jdk|agent — Force data source
  • --format=json — JSON output

argus classloader <pid>

Shows the class loader hierarchy and loaded class counts per loader.

$ argus classloader 39113
 argus classloader
 Shows class loader hierarchy and loaded class counts per loader.

╭─ Class Loaders ── pid:39113 ── source:auto ──────────────────────────────────╮
│ <bootstrap>                                                                  │
│ reflect.DelegatingClassLoader                                                │
│ ClassLoaders.PlatformClassLoader                                             │
│ ClassLoaders.AppClassLoader                                                  │
│ classloader.VisitableURLClassLoader                                          │
│ classloader.VisitableURLClassLoader                                          │
│ reflect.DelegatingClassLoader                                                │
│ initialization.MixInLegacyTypesClassLoader                                   │
│ classloader.FilteringClassLoader                                             │
│ classloader.VisitableURLClassLoader                                          │
│ classloader.FilteringClassLoader                                             │
│ classloader.CachingClassLoader                                               │
│ classloader.VisitableURLClassLoader                                          │
│ VisitableURLClassLoader.InstrumentingVisitableURLClassLoader                 │
│ classloader.VisitableURLClassLoader                                          │
│ reflect.DelegatingClassLoader                                                │
│                                                                              │
│ Total loaded classes: 0                                                      │
╰──────────────────────────────────────────────────────────────────────────────╯

argus spring <pid>

Inspects Spring Boot applications via JMX MBeans. Auto-detects Spring presence and shows application name, version, active profiles, health status, HikariCP connection pool stats, and Tomcat thread pool metrics.

$ argus spring 12345
$ argus spring 12345 --beans
$ argus spring 12345 --datasource
╭─ Spring Boot ── pid:12345 ── my-service v3.2.1 ──────────────────────────────╮
│                                                                              │
│   Application          my-service                                            │
│   Version              3.2.1                                                 │
│   Profiles             [prod]                                                │
│   Health               UP                                                    │
│                                                                              │
│   Datasource (HikariCP)                                                      │
│   Active connections   8 / 20 (40%)                                          │
│   Idle connections     12                                                    │
│   Pending threads      0                                                     │
│                                                                              │
│   Tomcat                                                                     │
│   Active threads       5 / 200                                               │
│   Request count        128,432                                               │
│   Error count          14                                                    │
╰──────────────────────────────────────────────────────────────────────────────╯

Options:

  • --beans — Show Spring context bean count and context list
  • --datasource — Show detailed HikariCP connection pool stats

Note: requires Spring Boot JMX MBeans to be enabled. Automatically starts the local JMX management agent if not running.


argus logger <pid>

Views and changes log levels at runtime. Lists all loggers (from JVM unified logging and java.util.logging) and optionally sets a log level without restart.

$ argus logger 39113
$ argus logger 39113 --filter=gc
$ argus logger 39113 --name=gc* --level=debug
╭─ Loggers ── pid:39113 ─────────────────────────────────────────────────────╮
│                                                                              │
│ Logger                                  Level        Source                  │
│ ─────────────────────────────────────────────────────────────────────────── │
│ ROOT                                    INFO         jul                     │
│ com.example                             DEBUG        jul                     │
│ gc                                      info         vm-log                  │
╰──────────────────────────────────────────────────────────────────────────────╯

Options:

  • --filter=<pattern> — Case-insensitive filter on logger name
  • --name=<name> — Logger name to change (supports * glob via VM.log)
  • --level=<level> — New log level (trace, debug, info, warning, error, off)
  • --format=json — JSON output

argus events <pid>

Displays the VM internal event log (safepoints, deoptimizations, GC phases) via jcmd VM.events. Safepoint events are highlighted yellow, deoptimizations red, GC events green.

$ argus events 39113
$ argus events 39113 --format=json
╭─ VM Events ── pid:39113 ────────────────────────────────────────────────────╮
│                                                                              │
│ Events (250 events):                                                         │
│ ─────────────────────────────────────────────────────────────────────────── │
│   [12.345s] Safepoint "G1CollectForAllocation"                               │
│   [12.312s] GC(18) Pause Young (Normal) (G1 Evacuation Pause) 12ms          │
│   [11.001s] Deoptimization: method=com.example.App.process reason=unstable_if│
╰──────────────────────────────────────────────────────────────────────────────╯

Options:

  • --format=json — JSON output (raw event text in a single field)

argus explain <term>

Explains JVM metrics, GC causes, and flags in plain English. Looks up the term in a built-in knowledge base; falls back to fuzzy matching when the exact term is not found.

$ argus explain "G1 Evacuation Pause"
$ argus explain -XX:MaxGCPauseMillis
$ argus explain throughput
$ argus explain gc-overhead
╭─ explain ── "gc-overhead" ───────────────────────────────────────────────────╮
│                                                                              │
│ gc-overhead                                                                  │
│                                                                              │
│ The percentage of elapsed time that the JVM spends performing garbage        │
│ collection. Calculated as total GC pause time divided by total elapsed       │
│ time. Values above 5% indicate the application is spending too much time     │
│ in GC and may need heap tuning. Values above 15% are critical and may        │
│ trigger OutOfMemoryError: GC overhead limit exceeded.                        │
╰──────────────────────────────────────────────────────────────────────────────╯

Options:

  • --format=json — JSON output with term, found, and explanation fields

argus doctor

One-click JVM health diagnosis with actionable recommendations and JVM flag suggestions.

$ argus doctor

Cross-correlates GC, memory, CPU, threads, and buffer metrics to produce severity-rated findings.

Health checks (11 rules):

RuleWhat it detectsThresholds
GC OverheadExcessive GC timewarn > 5%, critical > 15%
Heap PressureHeap/old gen saturationwarn > 75%, critical > 92%
Thread ContentionDeadlocks, blocked threadsdeadlock = critical, blocked > 5 = warn
MetaspaceClassLoader leakswarn > 80%, critical > 95%
Direct BuffersNIO buffer leakswarn > 200MB, critical > 800MB
CPU UsageProcess CPU saturationwarn > 70%, critical > 90%
Finalizer QueueBacked-up finalizationwarn > 100, critical > 1000
GC AlgorithmSuboptimal GC choice; Generational ZGC hint on JDK 21–23Serial on large heap, Full GC frequency; INFO when plain ZGC + JDK 21–23
ZgcSoftMaxBreachRuleZGC committed heap > SoftMaxHeapSizeWARNING (ZGC only)
ZgcCycleOverlapRuleZGC avg cycle duration > 80% of avg intervalCRITICAL when ≥ 5 cycles (ZGC only)
GcPressureRuleHigh-frequency young-gen GCwarn > 200/min, critical > 500/min

Exit codes for CI/CD: 0 = healthy, 1 = warnings, 2 = critical.

# CI/CD integration
argus doctor --format=json || alert "JVM unhealthy"

Profile-aware mode

Appends a Profile Findings section to the normal health report by running a short CPU profile and analysing the hot-method distribution.

# Live capture (default 5s)
$ argus doctor 12345 --profile

# Longer capture
$ argus doctor 12345 --profile --profile-duration=15

# Load from a previously saved snapshot
$ argus doctor 12345 --profile=snapshot.json

Options:

OptionDescription
--profileCapture a live CPU profile (default duration: 5s)
--profile=<file>Load a saved snapshot instead of capturing live
--profile-duration=NOverride the live capture duration in seconds (default: 5)

Profile rules (5):

RuleSeverityFires when
HotWaitRuleWARNINGBlocking/wait methods (Object.wait, Thread.sleep, LockSupport.park) exceed 50% of samples
HotJitBarrierRuleWARNINGJIT internals (c2_runtime, OptoRuntime, CompileBroker) exceed 10% of samples
HotGcBarrierRuleWARNINGGC code paths (G1, ZHeap, GenCollect, etc.) exceed 15% of samples
HotAllocationLeafRuleINFOTop-3 allocation hot leaves surfaced (alloc-type snapshots only)
DominantMethodRuleCRITICALA single method exceeds 60% of samples (tight loop / runaway computation)

argus suggest

JVM flag optimization based on workload analysis. Auto-detects workload type or accepts --profile override.

$ argus suggest                        # auto-detect workload
$ argus suggest --profile=web          # optimize for web server
$ argus suggest --profile=batch        # optimize for batch processing
$ argus suggest --profile=microservice # optimize for microservice
$ argus suggest --profile=streaming    # optimize for streaming
$ argus suggest --advanced             # include advanced ZGC flags
$ argus suggest --format=json          # JSON output

Workload profiles:

ProfileOptimizes forKey suggestions
webLow latency, consistent response timesG1GC/ZGC, MaxGCPauseMillis
batchMaximum throughputParallelGC, GC thread tuning
microserviceFast startup, low memorySerialGC for small heaps, CDS
streamingSteady allocation rateG1GC, TLAB sizing

Includes a copy-paste ready flag summary at the bottom of output.

ZGC-specific suggestions: When the current GC is ZGC, argus suggest emits the following additional recommendations:

SuggestionConditionFlag
Set SoftMaxHeapSizeHeap usage < 80% of -Xmx-XX:SoftMaxHeapSize=<N>g
Raise ZAllocationSpikeTolerance--advanced flag or detected spike behavior (GC overhead > 3% and max recent pause > 10 ms)-XX:ZAllocationSpikeTolerance=5.0
Enable ZUncommitCommitted heap > 4 GB and uptime > 1 hour-XX:+ZUncommit -XX:ZUncommitDelay=300

-XX:MaxGCPauseMillis is suppressed for ZGC (it is a no-op on that collector).

--advanced flag: Gates the ZAllocationSpikeTolerance suggestion so it only appears when explicitly requested or when spike behavior is auto-detected.

Profile-driven suggestions

Appends a Profile-Driven Suggestions section backed by hot-method analysis. Pass --profile to capture a live CPU profile, or --profile=<file> to load a saved snapshot.

# Live capture (default 5s)
$ argus suggest 12345 --profile

# Longer capture
$ argus suggest 12345 --profile --profile-duration=15

# From saved snapshot
$ argus suggest 12345 --profile=snapshot.json

Options:

OptionDescription
--profileCapture a live CPU profile (default duration: 5s)
--profile=<file>Load a saved snapshot instead of capturing live
--profile-duration=NOverride the live capture duration in seconds (default: 5)

Profile suggestion rules (6):

RuleConfidenceFlag suggestedFires when
StringDeduplicationSuggestionMED-XX:+UseStringDeduplicationString.intern / HashMap hash activity >= 5% of samples
TieredCompilationSuggestionMED-XX:+TieredCompilation -XX:TieredStopAtLevel=4JIT compiler CPU (c2_compile, OptoRuntime) >= 5% of samples
EscapeAnalysisSuggestionLOW-XX:+DoEscapeAnalysis -XX:+EliminateAllocationsShort-lived wrapper objects (Long, Integer, ArrayList$Itr) >= 2% of alloc samples
YoungGenSizingSuggestionLOW-XX:NewRatio=2Alloc snapshot with >= 10,000 samples (high allocation pressure)
LockContentionHintHIGH(no flag — structural hint)Single monitor >= 30% of lock-type snapshot samples
RuntimeWaitHintHIGH(no flag — structural hint)Wait/park methods >= 60% of all samples

When a profile rule fires for the same JVM flag area as a workload suggestion, the workload suggestion is marked (superseded by profile evidence) in the output.


argus rightsize <pid>

Right-sizes a JVM for FinOps. Recommends -Xmx/-Xms, a container memory request and limit, and a CPU request derived from the observed heap high-water-mark, the post-GC live-set floor, the allocation and promotion rate, and the metaspace plus direct-buffer footprint. The output always shows its inputs and the safety factor — never a black box — and never recommends an -Xmx below the observed post-GC live-set floor.

$ argus rightsize 39113                 # rich, human-readable recommendation
$ argus rightsize 39113 --format=json    # structured recommendation object
$ argus rightsize 39113 --limit=2g       # supply the real container limit for an OOMKill check
╭─ JVM Right-Sizing ── pid:39113 ── floor:312MiB ── safety:1.5x ───────────────╮
│                                                                              │
│   Recommended -Xmx        -Xmx512m                                           │
│   Recommended -Xms        -Xms512m                                           │
│   Container mem request   640 MiB                                            │
│   Container mem limit     800 MiB                                            │
│   CPU request             0.50 cores                                         │
│                                                                              │
│   [OOMKill]  no observed container limit — pass --limit=<size> to evaluate   │
│   ─────────────────────────────────────────────────────────────────────     │
│   Inputs                                                                     │
│     Heap high-water mark:   428 MiB                                          │
│     Post-GC live-set floor: 312 MiB                                          │
│     Metaspace:               48 MiB                                          │
│     Direct buffers:           4 MiB                                          │
│     Safety factor:          1.5x above the live-set floor                    │
╰──────────────────────────────────────────────────────────────────────────────╯

The -Xmx recommendation is the live-set floor multiplied by the safety factor (1.5x); -Xms is set equal to -Xmx to avoid heap-resize churn. The container limit adds the off-heap native footprint (metaspace, direct buffers, code cache, thread stacks) and a native-headroom factor on top.

OOMKill risk is a three-state verdict — it is only meaningful against a real container limit, so Argus never fakes an all-clear:

StateMeaning
AT_RISKAn observed limit leaves no native headroom above -Xmx (metaspace, threads, code cache, and direct buffers would have nowhere to live); raise the limit.
OKAn observed limit leaves adequate native headroom above -Xmx.
UNKNOWNNo --limit was supplied and no container limit was observed; risk cannot be evaluated honestly. Pass --limit=<size> to get a real answer.

When the observation window is too short to be defensible (under ~60s or fewer than 2 GC cycles), rightsize refuses to recommend and tells you to keep observing rather than emit an untrustworthy number.

Options:

  • --limit=<size> — Supply the real container memory limit (e.g. 2g, 512m) so the OOMKill-risk check can run; without it the risk state is UNKNOWN.
  • --format=json — Structured recommendation object with all inputs, the live-set floor, the safety factor, and the oomKillRiskState (AT_RISK / OK / UNKNOWN).

Fleet roll-up: the aggregator exposes GET /fleet/rightsize for a per-deployment right-sizing summary across every observed instance.


argus ci [pid]

CI/CD health gate. Runs doctor checks against a JVM and returns machine-readable output with exit codes for build gating.

$ argus ci 12345
$ argus ci 12345 --fail-on=warning
$ argus ci 12345 --format=github-annotations
$ argus ci 12345 --format=json
$ argus ci 12345 --format=junit
PASS: all JVM health checks passed

Or on failure:

FAIL: 1 critical, 2 warning(s)
  [CRITICAL] Heap Pressure: heap usage at 94%
  [WARNING]  GC Overhead: 8.2%
  [WARNING]  Metaspace: 87%

Options:

  • --fail-on=critical|warning — Severity threshold for non-zero exit (default: critical)
  • --format=summary|json|github-annotations|junit — Output format (default: summary)

Exit codes: 0 = pass, 1 = warnings present, 2 = critical findings.

GitHub Actions integration:

- name: JVM health gate
  run: argus ci $PID --format=github-annotations

argus compare <pid1> <pid2>

Compares two JVM processes side by side, or compares a live JVM against a saved baseline. Shows heap, GC, CPU, threads, loaded classes, and native memory (NMT) deltas.

$ argus compare 12345 67890
$ argus compare 12345 --save baseline.json
$ argus compare 12345 --load baseline.json
╭─ JVM Comparison ── pid:12345 ── vs ── pid:67890 ─────────────────────────────╮
│                                                                              │
│   Metric                  pid:12345        pid:67890       Delta             │
│   ──────────────────────────────────────────────────────────────────         │
│   Heap Used                    41M              89M      +48M (+117%)        │
│   Heap Max                    256M             512M     +256M (+100%)        │
│   Heap %                     16.0%            17.4%          +1.4%          │
│                                                                              │
│   GC Overhead                 0.0%             2.1%          +2.1%          │
│   Threads                       30               48            +18 (+60%)   │
╰──────────────────────────────────────────────────────────────────────────────╯

Options:

  • --save=PATH — Save a snapshot of the live JVM to JSON
  • --load=PATH — Load a saved snapshot to use as the comparison baseline
  • --format=json — JSON output

argus init

First-time setup wizard. Prompts you to select the default output language (en/ko/ja/zh) and saves the preference to ~/.argus/config.properties.

$ argus init
 argus init
 First-time setup: select your preferred output language.

? Select language [en/ko/ja/zh]: ko
✔ Language set to: ko
  Config saved to: /Users/you/.argus/config.properties

After running argus init, all subsequent commands use the chosen language by default. Override any time with --lang=<code>.


Back to all commands