//! Kepler eBPF energy scraper (opt-in, daemon only).
//!
//! Scrapes Kepler's Prometheus `/metrics` endpoint for cumulative
//! per-container or per-process joule counters and provides measured
//! per-service energy-per-op coefficients to the scoring stage.
//!
//! Unlike Scaphandre (microwatt gauge), Kepler exports a monotonically
//! increasing joules counter, so the scraper holds the previous raw
//! value per service and computes a joules-delta each tick.
//!
//! See `docs/design/05-GREENOPS-AND-CARBON.md` for architecture details
//! and `docs/LIMITATIONS.md` for the precision-bounds discussion.
pub use ;
pub use spawn_scraper;
pub use KeplerState;