| Crates.io | llm-sentinel |
| lib.rs | llm-sentinel |
| version | 0.1.0 |
| created_at | 2025-11-06 08:22:56.506883+00 |
| updated_at | 2025-11-06 08:22:56.506883+00 |
| description | Enterprise-grade anomaly detection and observability platform for LLM applications |
| homepage | https://github.com/globalbusinessadvisors/llm-sentinel |
| repository | https://github.com/globalbusinessadvisors/llm-sentinel |
| max_upload_size | |
| id | 1919285 |
| size | 151,350 |
Main binary for LLM-Sentinel anomaly detection system.
The sentinel binary orchestrates all system components:
cargo install llm-sentinel
Or build from source:
git clone https://github.com/globalbusinessadvisors/llm-sentinel
cd llm-sentinel
cargo build --release
# Start with default configuration
sentinel --config sentinel.yaml
# Specify custom config
sentinel --config /etc/sentinel/config.yaml
# Show version
sentinel --version
Create a sentinel.yaml file:
ingestion:
kafka:
brokers: ["localhost:9092"]
topic: "llm.telemetry"
detection:
enabled_detectors: ["zscore", "iqr"]
storage:
influxdb:
url: "http://localhost:8086"
api:
bind_addr: "0.0.0.0:8080"
docker run -v $(pwd)/sentinel.yaml:/etc/sentinel/sentinel.yaml \
ghcr.io/globalbusinessadvisors/llm-sentinel:latest
Apache-2.0