The Invisible Observer for Critical Infrastructure.
sentic agent is a high-performance, strictly typed telemetry collector designed for the sentic observability platform. Built entirely in Rust, it leverages eBPF (Extended Berkeley Packet Filter) to map service topologies and capture golden signals directly from the Linux kernel—without requiring application instrumentation or sidecars.
Designed for banking and high-compliance environments, the agent follows a "Store-and-Forward" architecture. It treats data integrity as a first-class citizen, ensuring that no log or trace is lost, even during network failures or power outages.
- Zero-Overhead Tracing: Uses
ayato hook into kernel tracepoints (kprobes/uprobes), capturing TCP flows, process lifecycles, and HTTP latency with negligible CPU impact. - Crash-Safe Buffering: Implements a durable Write-Ahead Log (WAL) using Redb. Data is persisted to disk atomically before transmission, guaranteeing At-Least-Once delivery.
- Bank-Grade Security: Enforces Mutual TLS (mTLS) for all communications. The agent cannot talk to the Brain without a valid certificate, and the Brain cannot command the Agent without one.
- Resource Efficient: Single static binary (< 15MB). Capped memory usage. No Garbage Collection pauses.
- Universal Compatibility: Runs on bare metal, VMs, or inside Containers. Supports legacy kernels (via fallback) and modern kernels (via CO-RE).
The agent operates as a "Dumb, Durable Courier." It does not parse or filter data at the edge; it captures raw events, seals them in a durable envelope, and ships them to the sentic brain for AI-driven analysis.
graph LR
K[Linux Kernel] -- eBPF (aya) --> C(collector loop)
C -- Raw Bytes --> B[(redb local buffer)]
B -- Batch Read --> T(gRPC transport)
T -- mTLS Stream --> S[sentic server]
Prerequisites
-
Linux Kernel 5.4+ (Recommended for eBPF features)
-
SystemD
You can install the agent directly from our public repository:
```bash
# 1. Download and run the install script
curl -sfL [https://raw.githubusercontent.com/kevalabs/sentic-agent/main/install.sh](https://raw.githubusercontent.com/kevalabs/sentic-agent/main/install.sh) | sudo bash
# 2. Configure the upstream Brain
sudo sentic-agent config --server "https://your-sentic-server:8080"
# 3. Start the service
sudo systemctl start sentic-agent
sentic agent is open source (Apache 2.0). We welcome contributions from the community, especially in eBPF probe development.
Please read CONTRIBUTING.md for build instructions and our SECURITY.md for vulnerability reporting.
Built with ❤️ by kevalabs • ideate.build.evolve()