perf-sentinel-core 0.4.4

Core library for perf-sentinel: polyglot performance anti-pattern detector
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Cloud-native energy estimation via CPU% + `SPECpower` interpolation.
//!
//! See `docs/design/05-GREENOPS-AND-CARBON.md` for architecture details.

pub mod config;
#[cfg(feature = "daemon")]
pub mod scraper;
#[cfg(feature = "daemon")]
pub mod state;
pub mod table;

pub use config::CloudEnergyConfig;
#[cfg(feature = "daemon")]
pub use scraper::spawn_cloud_scraper;
#[cfg(feature = "daemon")]
pub use state::CloudEnergyState;