Every flag below also works as an environment variable and has exactly one
default — no surprise conditional defaults, no flag that means something
different depending on another flag (target-specific requirements are
enforced separately, see Topologies).
flag > env > default. Any flag -foo-bar has an env var
JAQUE_FOO_BAR (uppercased, - becomes _, JAQUE_ prefixed) — the
mapping is mechanical, so a newly added flag gets env support without
anyone remembering to wire it up.
DEPRECATED — use the CUE config’s sinks: block instead. Comma-separated perfdata sink URLs (clickhouse://..., remotewrite(s)://...); each URL is translated into a synthetic sink named sink-0, sink-1, … and merged into the CUE sinks: block.
-sinks
""
JAQUE_SINKS
Comma-separated names of configured sinks this process runs; empty runs all.
-sink-batch-size
1000
JAQUE_SINK_BATCH_SIZE
Rows buffered before a sink write; the default a sink uses unless its CUE spec sets its own batch_size.
-sink-flush-interval
5s
JAQUE_SINK_FLUSH_INTERVAL
Max time a partial batch waits before being flushed; the default a sink uses unless its CUE spec sets its own flush_interval.
-archive
""
JAQUE_ARCHIVE
DEPRECATED — use the CUE config’s sinks: block (type: archive) instead. Event log archive (file://<dir> or s3://...); translated into a synthetic sink named archive of type: archive.
-archive-segment-bytes
67108864 (64 MiB)
JAQUE_ARCHIVE_SEGMENT_BYTES
Uncompressed size that triggers sealing a segment.