Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/sensors/powercap_rapl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ impl Sensor for PowercapRAPLSensor {
fn generate_topology(&self) -> Result<Topology, Box<dyn Error>> {
let modules_state = PowercapRAPLSensor::check_module();
if modules_state.is_err() && !self.virtual_machine {
panic!("Couldn't find intel_rapl modules.");
warn!("Couldn't find intel_rapl modules.");
}
let mut topo = Topology::new();
let re_domain = Regex::new(r"^.*/intel-rapl:\d+:\d+$").unwrap();
Expand Down