struktura 1.8.7

Time-series anomaly detection with no training data: detrended fluctuation analysis (DFA, Hurst exponent), a self-calibrating streaming monitor for sensors and telemetry, and C99 code generation for embedded and flight software. no_std.
Documentation
1
2
3
4
5
6
7
8
9
FROM rust:1.80-slim AS builder
WORKDIR /app
COPY . .
RUN cargo build --release --bin struktura

FROM debian:bookworm-slim
COPY --from=builder /app/target/release/struktura /usr/local/bin/
ENTRYPOINT ["struktura"]
CMD ["--help"]