You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently POSIX compliant platforms are developed and tested, but Windows support remains a WIP.
Usage
externcrate spork;use spork::{Spork,Error,ErrorKind,Platform,StatType,Stats};let spork = matchSpork::new(){Ok(s) => s,Err(e) => panic!("Error creating spork client! {:?}", e)};println!("Using platform {:?}", spork.platform());println!("CPU cores: {:?}x @ {:?} Hz", spork.num_cores(), spork.clock_speed());// get process stats let p_stats = match spork.stats(StatType::Process){Ok(s) => s,Err(e) => panic!("Error polling process stats! {:?}", e)};println!("Process stats: {:?}", p_stats);// get thread stats let t_stats = match spork.stats(StatType::Thread){Ok(s) => s,Err(e) => panic!("Error polling thread stats! {:?}", e)};println!("Thread CPU: {}%, Memory: {} bytes, Cores: {}, Type: {}, Polled at: {}",
t_stats.cpu, t_stats.memory, t_stats.cores, t_stats.kind, t_stats.polled);// get process stats across all CPU coreslet p_stats = spork.stats_with_cpus(StatType::Process,None).unwrap();// get process stats across only 2 coreslet p_stats = spork.stats_with_cpus(StatType::Process,Some(2)).unwrap();// get stats for child threads of the calling thread across all CPU coreslet c_stats = spork.stats_with_cpus(StatType::Children,None).unwrap();
Unsupported Platforms
This module supports POSIX compliant platforms (Linux, OS X, etc) and Windows (soon). If you'd like to use this on an unsupported platform, or one on which you might expect compatibility issues, there are two options available for testing and usage. If you'd prefer to catch any compatibility issues at compile-time just download this library and try to build it. If it builds it shouldTM work, but it's still a good idea to run the test suite before trying it in production.
If you'd prefer to handle compatibility errors at runtime add the compile_unimplemented feature to your Cargo.toml for Spork. Instead of introducing compiler errors this will compile mock functions which always return Unimplemented errors in place of any missing platform-specific ones.