Feature Flags๐
rsigma is a workspace of seven crates (rsigma-parser, rsigma-eval, rsigma-convert, rsigma-runtime, rsigma-mcp, rsigma-cli, rsigma-lsp), several of which expose Cargo features that gate optional dependencies and code paths. This page documents every feature, its default state, what it pulls in, and how to enable it when building from source.
The CLI ships with sensible defaults; the precompiled release archives and the GHCR Docker image are built with --all-features, so every feature documented here is available out of the box.
rsigma-cli๐
The crate that produces the rsigma binary.
| Feature | Default | Pulls in | What it enables |
|---|---|---|---|
daemon | yes | rsigma-runtime, tokio, axum, prometheus, notify, rusqlite, tower-http | engine daemon, the HTTP API server, /metrics, hot-reload, SQLite state persistence. The default; disable only for a minimal engine eval / rule * build. |
mcp | no | rsigma-mcp (pulls in rmcp, schemars), tokio | mcp serve, the Model Context Protocol server exposing the toolchain to AI agents. Opt-in: build with --features mcp. The prebuilt binaries and Docker image (--all-features) include it. See the MCP server guide. |
daemon-nats | no | daemon + async-nats, tokio-stream, time, rsigma-runtime/nats | NATS JetStream as --input and --output (and DLQ). All --nats-* flags. RSIGMA_CONSUMER_GROUP. See NATS Streaming. |
daemon-otlp | no | daemon + prost, tonic, flate2, rsigma-runtime/otlp | OTLP/HTTP and OTLP/gRPC receivers on /v1/logs. See OTLP Integration. |
daemon-tls | no | daemon + rustls (aws-lc-rs), tokio-rustls, rustls-pki-types, x509-parser, hyper, hyper-util, tower-service | Server-side TLS termination for the API listener (HTTP REST, /metrics, OTLP/HTTP, OTLP/gRPC) with optional mTLS client verification, SIGHUP-triggered cert hot-reload, and two extra Prometheus metrics. See TLS termination. |
logfmt | no | rsigma-runtime/logfmt | --input-format logfmt for the daemon and engine eval. |
cef | no | rsigma-runtime/cef | --input-format cef for ArcSight-style logs. |
evtx | no | rsigma-runtime/evtx (dep on the evtx crate) | Native .evtx file input via engine eval -e @file.evtx. See Input Formats. |
daachorse-index | no | rsigma-eval/daachorse-index, optionally rsigma-runtime/daachorse-index | The --cross-rule-ac flag for very large rule sets dominated by shared positive substrings. See Performance Tuning. |
rsigma-eval๐
The detection and correlation engine. Used as a library and re-exported by rsigma-cli.
| Feature | Default | Pulls in | What it enables |
|---|---|---|---|
parallel | no | rayon | Parallel batch evaluation via Engine::evaluate_batch_parallel. The CLI enables this by default through its dependency declaration. |
daachorse-index | no | daachorse | Cross-rule Aho-Corasick pre-filter. See above. |
rsigma-runtime๐
The streaming runtime (event sources, sinks, daemon plumbing, dynamic pipelines).
| Feature | Default | Pulls in | What it enables |
|---|---|---|---|
nats | no | async-nats, tokio-stream, time, futures | NATS source, sink, and dynamic-pipeline source type. |
otlp | no | opentelemetry-proto, prost | OTLP log decoding. |
logfmt | no | (none beyond the parser) | logfmt input parser. |
cef | no | (none beyond the parser) | cef input parser. |
evtx | no | evtx | .evtx file reader. |
daachorse-index | no | rsigma-eval/daachorse-index | Cross-rule AC support when used from rsigma-runtime consumers. |
rsigma-parser๐
No features. The parser is unconditional.
rsigma-mcp๐
The Model Context Protocol server library. No Cargo features of its own; it is gated into the CLI by the mcp feature above.
rstix๐
STIX 2.1 library crate. Data Model + Serialization is complete (typed objects, bundle parse/stream, semantic validation). Pattern Engine parse, type-check, and evaluation are complete behind pattern; canonical printer and indicator wiring are deferred โ see rstix Pattern Engine.
| Feature | Default | Pulls in | What it enables |
|---|---|---|---|
serde | yes | serde, serde_json | Bundle::parse, parse_reader, serde on all model types, Bundle::validate. |
pattern | no | base64 | Pattern::parse, Pattern::evaluate, Pattern::matches_single, Pattern::matches_single_with_bundle, Pattern::evaluate_observed_data, PatternAst, ObservationContext, PatternScoType, PatternError, PatternMatchError โ STIX Specification ยง9 Levels 1โ3 parse, type-check, and evaluation. See rstix Pattern Engine. |
Without serde, only core, id, and vocab modules are available (no bundle parsing). Enable pattern for STIX patterning (cargo build -p rstix --features pattern).
Building with features๐
Cargo install๐
# Default: daemon + everything that ships with it, no extras.
cargo install --locked rsigma
# Recommended for production: daemon + TLS + NATS + OTLP + EVTX + cross-rule AC.
cargo install --locked rsigma --features daemon-tls,daemon-nats,daemon-otlp,evtx,daachorse-index
# Match the prebuilt release archives and Docker image exactly.
cargo install --locked rsigma --all-features
Local development๐
# Workspace build with every feature on.
cargo build --release --all-features --workspace
# Run just the `engine daemon` tests with the NATS feature.
cargo test -p rsigma-cli --features daemon-nats
CI coverage๐
The repo's ci.yml runs cargo check, MSRV, cargo clippy, cargo test, cargo doc, and the coverage job against --all-features, plus the cross-platform cargo test --all-features matrix on Ubuntu, macOS, and Windows. There is no per-feature opt-in matrix today: every gated dependency listed above is built on every push, but no job exercises e.g. daemon-nats in isolation.
If a feature combination matters to you (and especially if a build with --no-default-features or a single optional feature is part of your downstream pipeline) and CI does not currently exercise it, file an issue so a job can be added.
Detecting features at runtime๐
The binary's --help enumerates only the flags compiled in. If a NATS flag is missing from rsigma engine daemon --help, the binary was built without daemon-nats. Equivalent shells for the other gated surfaces:
# daachorse-index?
rsigma engine daemon --help | grep -q cross-rule-ac && echo on || echo off
# evtx?
echo "" | rsigma engine eval -r /dev/null -e @/dev/null --input-format json 2>&1 | grep -q "evtx" || echo "evtx feature not required for JSON inputs"
# Inspect feature flags via the binary's version output (planned: not yet implemented).
A first-class rsigma --features introspection flag would be a nice-to-have but is not implemented today.
See also๐
- Installation for prebuilt binaries (which use
--all-features) and source builds. - Performance Tuning for when
daachorse-indexactually pays off. - NATS Streaming, OTLP Integration, Input Formats for what each feature gates in practice.