-
-
Notifications
You must be signed in to change notification settings - Fork 109
/
mod.rs
1660 lines (1565 loc) · 60 KB
/
mod.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//! # Sensors: to get data related to energy consumption
//!
//! `Sensor` is the root for all sensors. It defines the [Sensor] trait
//! needed to implement a sensor.
#[cfg(target_os = "windows")]
pub mod msr_rapl;
#[cfg(target_os = "windows")]
use msr_rapl::get_msr_value;
#[cfg(target_os = "linux")]
pub mod powercap_rapl;
pub mod units;
pub mod utils;
#[cfg(target_os = "linux")]
use procfs::{CpuInfo, CpuTime, KernelStats};
use std::{collections::HashMap, error::Error, fmt, fs, mem::size_of_val, str, time::Duration};
#[allow(unused_imports)]
use sysinfo::{CpuExt, Pid, System, SystemExt};
use sysinfo::{DiskExt, DiskType};
use utils::{current_system_time_since_epoch, IProcess, ProcessTracker};
// !!!!!!!!!!!!!!!!! Sensor !!!!!!!!!!!!!!!!!!!!!!!
/// Sensor trait, the Sensor API.
pub trait Sensor {
fn get_topology(&self) -> Box<Option<Topology>>;
fn generate_topology(&self) -> Result<Topology, Box<dyn Error>>;
}
/// Defines methods for Record instances creation
/// and storage.
pub trait RecordGenerator {
fn refresh_record(&mut self);
fn get_records_passive(&self) -> Vec<Record>;
fn clean_old_records(&mut self);
}
pub trait RecordReader {
fn read_record(&self) -> Result<Record, Box<dyn Error>>;
}
// !!!!!!!!!!!!!!!!! Topology !!!!!!!!!!!!!!!!!!!!!!!
/// Topology struct represents the whole CPUSocket architecture,
/// from the electricity consumption point of view,
/// including the potentially multiple CPUSocket sockets.
/// Owns a vector of CPUSocket structs representing each socket.
#[derive(Debug, Clone)]
pub struct Topology {
/// The CPU sockets found on the host, represented as CPUSocket instances attached to this topology
pub sockets: Vec<CPUSocket>,
/// ProcessTrack instance that keeps track of processes running on the host and CPU stats associated
pub proc_tracker: ProcessTracker,
/// CPU usage stats buffer
pub stat_buffer: Vec<CPUStat>,
/// Measurements of energy usage, stored as Record instances
pub record_buffer: Vec<Record>,
/// Maximum size in memory for the recor_buffer
pub buffer_max_kbytes: u16,
/// Sorted list of all domains names
pub domains_names: Option<Vec<String>>,
/// Sensor-specific data needed in the topology
pub _sensor_data: HashMap<String, String>,
}
impl RecordGenerator for Topology {
/// Computes a new Record, stores it in the record_buffer
/// and returns a clone of this record.
///
fn refresh_record(&mut self) {
match self.read_record() {
Ok(record) => {
self.record_buffer.push(record);
}
Err(e) => {
warn!(
"Could'nt read record from {}, error was : {:?}",
self._sensor_data
.get("source_file")
.unwrap_or(&String::from("SRCFILENOTKNOWN")),
e
);
}
}
if !self.record_buffer.is_empty() {
self.clean_old_records();
}
}
/// Removes (and thus drops) as many Record instances from the record_buffer
/// as needed for record_buffer to not exceed 'buffer_max_kbytes'
fn clean_old_records(&mut self) {
let record_ptr = &self.record_buffer[0];
let record_size = size_of_val(record_ptr);
let curr_size = record_size * self.record_buffer.len();
trace!(
"topology: current size of record buffer: {} max size: {}",
curr_size,
self.buffer_max_kbytes * 1000
);
if curr_size as u16 > self.buffer_max_kbytes * 1000 {
let size_diff = curr_size - (self.buffer_max_kbytes * 1000) as usize;
trace!(
"topology: size_diff: {} record size: {}",
size_diff,
record_size
);
if size_diff > record_size {
let nb_records_to_delete = size_diff as f32 / record_size as f32;
for _ in 1..nb_records_to_delete as u32 {
if !self.record_buffer.is_empty() {
let res = self.record_buffer.remove(0);
debug!("Cleaning record buffer on Topology, removing: {:?}", res);
}
}
}
}
}
/// Returns a copy of the record_buffer
fn get_records_passive(&self) -> Vec<Record> {
let mut result = vec![];
for r in &self.record_buffer {
result.push(Record::new(
r.timestamp,
r.value.clone(),
units::Unit::MicroJoule,
));
}
result
}
}
impl Default for Topology {
fn default() -> Self {
{
Self::new(HashMap::new())
}
}
}
impl Topology {
/// Instanciates Topology and returns the instance
pub fn new(sensor_data: HashMap<String, String>) -> Topology {
Topology {
sockets: vec![],
proc_tracker: ProcessTracker::new(5),
stat_buffer: vec![],
record_buffer: vec![],
buffer_max_kbytes: 1,
domains_names: None,
_sensor_data: sensor_data,
}
}
/// Parses /proc/cpuinfo and creates instances of CPUCore.
///
///# Examples
///
/// ```
/// use scaphandre::sensors::Topology;
///
/// if let Some(cores) = Topology::generate_cpu_cores() {
/// println!("There are {} cores on this host.", cores.len());
/// for c in &cores {
/// println!("CPU info {:?}", c.attributes);
/// }
/// }
/// ```
pub fn generate_cpu_cores() -> Option<Vec<CPUCore>> {
let mut cores = vec![];
let sysinfo_system = System::new_all();
let sysinfo_cores = sysinfo_system.cpus();
warn!("Sysinfo sees {}", sysinfo_cores.len());
#[cfg(target_os = "linux")]
let cpuinfo = CpuInfo::new().unwrap();
for (id, c) in (0_u16..).zip(sysinfo_cores.iter()) {
let mut info = HashMap::<String, String>::new();
#[cfg(target_os = "linux")]
{
for (k, v) in cpuinfo.get_info(id as usize).unwrap().iter() {
info.insert(String::from(*k), String::from(*v));
}
}
info.insert(String::from("frequency"), c.frequency().to_string());
info.insert(String::from("name"), c.name().to_string());
info.insert(String::from("vendor_id"), c.vendor_id().to_string());
info.insert(String::from("brand"), c.brand().to_string());
cores.push(CPUCore::new(id, info));
}
Some(cores)
}
/// Adds a Socket instance to self.sockets if and only if the
/// socket id doesn't exist already.
pub fn safe_add_socket(
&mut self,
socket_id: u16,
domains: Vec<Domain>,
attributes: Vec<Vec<HashMap<String, String>>>,
counter_uj_path: String,
buffer_max_kbytes: u16,
sensor_data: HashMap<String, String>,
) -> Option<CPUSocket> {
if !self.sockets.iter().any(|s| s.id == socket_id) {
let socket = CPUSocket::new(
socket_id,
domains,
attributes,
counter_uj_path,
buffer_max_kbytes,
sensor_data,
);
let res = socket.clone();
self.sockets.push(socket);
Some(res)
} else {
None
}
}
pub fn safe_insert_socket(&mut self, socket: CPUSocket) {
if !self.sockets.iter().any(|s| s.id == socket.id) {
self.sockets.push(socket);
}
}
/// Returns a immutable reference to self.proc_tracker
pub fn get_proc_tracker(&self) -> &ProcessTracker {
&self.proc_tracker
}
/// Returns a mutable reference to self.sockets
pub fn get_sockets(&mut self) -> &mut Vec<CPUSocket> {
&mut self.sockets
}
/// Returns an immutable reference to self.sockets
pub fn get_sockets_passive(&self) -> &Vec<CPUSocket> {
&self.sockets
}
// Build a sorted list of all domains names from all sockets.
fn build_domains_names(&mut self) {
let mut names: HashMap<String, ()> = HashMap::new();
for s in self.sockets.iter() {
for d in s.get_domains_passive() {
names.insert(d.name.clone(), ());
}
}
let mut domain_names = names.keys().cloned().collect::<Vec<String>>();
domain_names.sort();
self.domains_names = Some(domain_names);
}
pub fn set_domains_names(&mut self, names: Vec<String>) {
self.domains_names = Some(names);
}
/// Adds a Domain instance to a given socket, if and only if the domain
/// id doesn't exist already for the socket.
pub fn safe_add_domain_to_socket(
&mut self,
socket_id: u16,
domain_id: u16,
name: &str,
uj_counter: &str,
buffer_max_kbytes: u16,
sensor_data: HashMap<String, String>,
) {
let iterator = self.sockets.iter_mut();
for socket in iterator {
if socket.id == socket_id {
socket.safe_add_domain(Domain::new(
domain_id,
String::from(name),
String::from(uj_counter),
buffer_max_kbytes,
sensor_data.clone(),
));
}
}
self.build_domains_names();
}
/// Generates CPUCore instances for the host and adds them
/// to appropriate CPUSocket instance from self.sockets
#[cfg(target_os = "linux")]
pub fn add_cpu_cores(&mut self) {
if let Some(mut cores) = Topology::generate_cpu_cores() {
while let Some(c) = cores.pop() {
let socket_id = &c
.attributes
.get("physical id")
.unwrap()
.parse::<u16>()
.unwrap();
let socket_match = self.sockets.iter_mut().find(|x| &x.id == socket_id);
//In VMs there might be a missmatch betwen Sockets and Cores - see Issue#133 as a first fix we just map all cores that can't be mapped to the first
let socket = match socket_match {
Some(x) => x,
None =>self.sockets.first_mut().expect("Trick: if you are running on a vm, do not forget to use --vm parameter invoking scaphandre at the command line")
};
if socket_id == &socket.id {
socket.add_cpu_core(c);
} else {
socket.add_cpu_core(c);
warn!("coud't not match core to socket - mapping to first socket instead - if you are not using --vm there is something wrong")
}
}
//#[cfg(target_os = "windows")]
//{
//TODO: fix
//let nb_sockets = &self.sockets.len();
//let mut socket_counter = 0;
//let nb_cores_per_socket = &cores.len() / nb_sockets;
//warn!("nb_cores_per_socket: {} cores_len: {} sockets_len: {}", nb_cores_per_socket, &cores.len(), &self.sockets.len());
//for s in self.sockets.iter_mut() {
// for c in (socket_counter * nb_cores_per_socket)..((socket_counter+1) * nb_cores_per_socket) {
// match cores.pop() {
// Some(core) => {
// warn!("adding core {} to socket {}", core.id, s.id);
// s.add_cpu_core(core);
// },
// None => {
// error!("Uneven number of CPU cores !");
// }
// }
// }
// socket_counter = socket_counter + 1;
//}
//}
} else {
panic!("Couldn't retrieve any CPU Core from the topology. (generate_cpu_cores)");
}
}
/// Triggers ProcessTracker refresh on process stats
/// and power consumption, CPU stats and cores power comsumption,
/// CPU sockets stats and power consumption.
pub fn refresh(&mut self) {
let sockets = &mut self.sockets;
for s in sockets {
// refresh each socket with new record
s.refresh_record();
s.refresh_stats();
let domains = s.get_domains();
for d in domains {
d.refresh_record();
}
//let cores = s.get_cores();
//for c in cores {
//
//}
}
self.proc_tracker.refresh();
self.refresh_procs();
self.refresh_record();
self.refresh_stats();
}
/// Gets currently running processes (as procfs::Process instances) and stores
/// them in self.proc_tracker
fn refresh_procs(&mut self) {
{
let pt = &mut self.proc_tracker;
pt.sysinfo.refresh_processes();
let current_procs = pt
.sysinfo
.processes()
.values()
.map(IProcess::new)
.collect::<Vec<_>>();
for p in current_procs {
match pt.add_process_record(p) {
Ok(_) => {}
Err(msg) => {
panic!("Failed to track process !\nGot: {}", msg)
}
}
}
}
}
/// Gets currents stats and stores them as a CPUStat instance in self.stat_buffer
pub fn refresh_stats(&mut self) {
if let Some(stats) = self.read_stats() {
self.stat_buffer.insert(0, stats);
if !self.stat_buffer.is_empty() {
self.clean_old_stats();
}
} else {
debug!("read_stats() is None");
}
}
/// Checks the size in memory of stats_buffer and deletes as many CPUStat
/// instances from the buffer to make it smaller in memory than buffer_max_kbytes.
fn clean_old_stats(&mut self) {
let stat_ptr = &self.stat_buffer[0];
let size_of_stat = size_of_val(stat_ptr);
let curr_size = size_of_stat * self.stat_buffer.len();
trace!("current_size of stats in topo: {}", curr_size);
if curr_size > (self.buffer_max_kbytes * 1000) as usize {
let size_diff = curr_size - (self.buffer_max_kbytes * 1000) as usize;
if size_diff > size_of_stat {
let nb_stats_to_delete = size_diff as f32 / size_of_stat as f32;
trace!(
"nb_stats_to_delete: {} size_diff: {} size of: {}",
nb_stats_to_delete,
size_diff,
size_of_stat
);
for _ in 1..nb_stats_to_delete as u32 {
if !self.stat_buffer.is_empty() {
let res = self.stat_buffer.pop();
debug!("Cleaning topology stat buffer, removing: {:?}", res);
}
}
}
}
}
/// Returns a Record instance containing the difference (attribute by attribute, except timestamp which will be the timestamp from the last record)
/// between the last (in time) record from self.record_buffer and the previous one
pub fn get_records_diff(&self) -> Option<Record> {
let len = self.record_buffer.len();
if len > 2 {
let last = self.record_buffer.last().unwrap();
let previous = self.record_buffer.get(len - 2).unwrap();
let last_value = last.value.parse::<u64>().unwrap();
let previous_value = previous.value.parse::<u64>().unwrap();
if previous_value <= last_value {
let diff = last_value - previous_value;
return Some(Record::new(last.timestamp, diff.to_string(), last.unit));
}
}
None
}
/// Returns a Record instance containing the power consumed between
/// last and previous measurement, in microwatts.
pub fn get_records_diff_power_microwatts(&self) -> Option<Record> {
if self.record_buffer.len() > 1 {
let last_record = self.record_buffer.last().unwrap();
let previous_record = self
.record_buffer
.get(self.record_buffer.len() - 2)
.unwrap();
match previous_record.value.trim().parse::<u128>() {
Ok(previous_microjoules) => match last_record.value.trim().parse::<u128>() {
Ok(last_microjoules) => {
if previous_microjoules > last_microjoules {
return None;
}
let microjoules = last_microjoules - previous_microjoules;
let time_diff = last_record.timestamp.as_secs_f64()
- previous_record.timestamp.as_secs_f64();
let microwatts = microjoules as f64 / time_diff;
return Some(Record::new(
last_record.timestamp,
(microwatts as u64).to_string(),
units::Unit::MicroWatt,
));
}
Err(e) => {
warn!(
"Could'nt get previous_microjoules - value : '{}' - error : {:?}",
previous_record.value, e
);
}
},
Err(e) => {
warn!(
"Couldn't parse previous_microjoules - value : '{}' - error : {:?}",
previous_record.value.trim(),
e
);
}
}
}
None
}
/// Returns a CPUStat instance containing the difference between last
/// and previous stats measurement (from stat_buffer), attribute by attribute.
pub fn get_stats_diff(&self) -> Option<CPUStat> {
if self.stat_buffer.len() > 1 {
let last = &self.stat_buffer[0];
let previous = &self.stat_buffer[1];
let mut iowait = None;
let mut irq = None;
let mut softirq = None;
let mut steal = None;
let mut guest = None;
let mut guest_nice = None;
if last.iowait.is_some() && previous.iowait.is_some() {
iowait = Some(last.iowait.unwrap() - previous.iowait.unwrap());
}
if last.irq.is_some() && previous.irq.is_some() {
irq = Some(last.irq.unwrap() - previous.irq.unwrap());
}
if last.softirq.is_some() && previous.softirq.is_some() {
softirq = Some(last.softirq.unwrap() - previous.softirq.unwrap());
}
if last.steal.is_some() && previous.steal.is_some() {
steal = Some(last.steal.unwrap() - previous.steal.unwrap());
}
if last.guest.is_some() && previous.guest.is_some() {
guest = Some(last.guest.unwrap() - previous.guest.unwrap());
}
if last.guest_nice.is_some() && previous.guest_nice.is_some() {
guest_nice = Some(last.guest_nice.unwrap() - previous.guest_nice.unwrap());
}
return Some(CPUStat {
user: last.user - previous.user,
nice: last.nice - previous.nice,
system: last.system - previous.system,
idle: last.idle - previous.idle,
iowait,
irq,
softirq,
steal,
guest,
guest_nice,
});
}
None
}
/// Reads content from /proc/stat and extracts the stats of the whole CPU topology.
pub fn read_stats(&self) -> Option<CPUStat> {
#[cfg(target_os = "linux")]
{
let kernelstats_or_not = KernelStats::new();
if let Ok(res_cputime) = kernelstats_or_not {
return Some(CPUStat {
user: res_cputime.total.user,
guest: res_cputime.total.guest,
guest_nice: res_cputime.total.guest_nice,
idle: res_cputime.total.idle,
iowait: res_cputime.total.iowait,
irq: res_cputime.total.irq,
nice: res_cputime.total.nice,
softirq: res_cputime.total.softirq,
steal: res_cputime.total.steal,
system: res_cputime.total.system,
});
}
}
None
}
/// Returns the number of processes currently available
pub fn read_nb_process_total_count(&self) -> Option<u64> {
#[cfg(target_os = "linux")]
{
if let Ok(result) = KernelStats::new() {
return Some(result.processes);
}
}
None
}
/// Returns the number of processes currently in a running state
pub fn read_nb_process_running_current(&self) -> Option<u32> {
#[cfg(target_os = "linux")]
{
if let Ok(result) = KernelStats::new() {
if let Some(procs_running) = result.procs_running {
return Some(procs_running);
}
}
}
None
}
/// Returns the number of processes currently blocked waiting
pub fn read_nb_process_blocked_current(&self) -> Option<u32> {
#[cfg(target_os = "linux")]
{
if let Ok(result) = KernelStats::new() {
if let Some(procs_blocked) = result.procs_blocked {
return Some(procs_blocked);
}
}
}
None
}
/// Returns the current number of context switches
pub fn read_nb_context_switches_total_count(&self) -> Option<u64> {
#[cfg(target_os = "linux")]
{
if let Ok(result) = KernelStats::new() {
return Some(result.ctxt);
}
}
None
}
pub fn get_cpu_frequency(&self) -> Record {
Record::new(
current_system_time_since_epoch(),
self.proc_tracker.get_cpu_frequency().to_string(),
units::Unit::MegaHertz,
)
}
pub fn get_load_avg(&self) -> Option<Vec<Record>> {
let load = self.get_proc_tracker().sysinfo.load_average();
let timestamp = current_system_time_since_epoch();
Some(vec![
Record::new(timestamp, load.one.to_string(), units::Unit::Numeric),
Record::new(timestamp, load.five.to_string(), units::Unit::Numeric),
Record::new(timestamp, load.five.to_string(), units::Unit::Numeric),
])
}
pub fn get_disks(&self) -> HashMap<String, (String, HashMap<String, String>, Record)> {
let timestamp = current_system_time_since_epoch();
let mut res = HashMap::new();
for d in self.proc_tracker.sysinfo.disks() {
let mut attributes = HashMap::new();
if let Ok(file_system) = str::from_utf8(d.file_system()) {
attributes.insert(String::from("disk_file_system"), String::from(file_system));
}
if let Some(mount_point) = d.mount_point().to_str() {
attributes.insert(String::from("disk_mount_point"), String::from(mount_point));
}
match d.type_() {
DiskType::SSD => {
attributes.insert(String::from("disk_type"), String::from("SSD"));
}
DiskType::HDD => {
attributes.insert(String::from("disk_type"), String::from("HDD"));
}
DiskType::Unknown(_) => {
attributes.insert(String::from("disk_type"), String::from("Unknown"));
}
}
attributes.insert(
String::from("disk_is_removable"),
d.is_removable().to_string(),
);
if let Some(disk_name) = d.name().to_str() {
attributes.insert(String::from("disk_name"), String::from(disk_name));
}
res.insert(
String::from("scaph_host_disk_total_bytes"),
(
String::from("Total disk size, in bytes."),
attributes.clone(),
Record::new(timestamp, d.total_space().to_string(), units::Unit::Bytes),
),
);
res.insert(
String::from("scaph_host_disk_available_bytes"),
(
String::from("Available disk space, in bytes."),
attributes.clone(),
Record::new(
timestamp,
d.available_space().to_string(),
units::Unit::Bytes,
),
),
);
}
res
}
pub fn get_total_memory_bytes(&self) -> Record {
Record {
timestamp: current_system_time_since_epoch(),
value: self.proc_tracker.sysinfo.total_memory().to_string(),
unit: units::Unit::Bytes,
}
}
pub fn get_available_memory_bytes(&self) -> Record {
Record {
timestamp: current_system_time_since_epoch(),
value: self.proc_tracker.sysinfo.available_memory().to_string(),
unit: units::Unit::Bytes,
}
}
pub fn get_free_memory_bytes(&self) -> Record {
Record {
timestamp: current_system_time_since_epoch(),
value: self.proc_tracker.sysinfo.free_memory().to_string(),
unit: units::Unit::Bytes,
}
}
pub fn get_total_swap_bytes(&self) -> Record {
Record {
timestamp: current_system_time_since_epoch(),
value: self.proc_tracker.sysinfo.total_swap().to_string(),
unit: units::Unit::Bytes,
}
}
pub fn get_free_swap_bytes(&self) -> Record {
Record {
timestamp: current_system_time_since_epoch(),
value: self.proc_tracker.sysinfo.free_swap().to_string(),
unit: units::Unit::Bytes,
}
}
/// Returns the power consumed between last and previous measurement for a given process ID, in microwatts
pub fn get_process_power_consumption_microwatts(&self, pid: Pid) -> Option<Record> {
if let Some(record) = self.get_proc_tracker().get_process_last_record(pid) {
let process_cpu_percentage = self.get_process_cpu_usage_percentage(pid).unwrap();
let topo_conso = self.get_records_diff_power_microwatts();
if let Some(conso) = &topo_conso {
let conso_f64 = conso.value.parse::<f64>().unwrap();
let result =
(conso_f64 * process_cpu_percentage.value.parse::<f64>().unwrap()) / 100.0_f64;
return Some(Record::new(
record.timestamp,
result.to_string(),
units::Unit::MicroWatt,
));
}
} else {
trace!("Couldn't find records for PID: {}", pid);
}
None
}
pub fn get_all_per_process(&self, pid: Pid) -> Option<HashMap<String, (String, Record)>> {
let mut res = HashMap::new();
if let Some(record) = self.get_proc_tracker().get_process_last_record(pid) {
let process_cpu_percentage =
record.process.cpu_usage_percentage / self.proc_tracker.nb_cores as f32;
res.insert(
String::from("scaph_process_cpu_usage_percentage"),
(String::from("CPU time consumed by the process, as a percentage of the capacity of all the CPU Cores"),
Record::new(
record.timestamp,
process_cpu_percentage.to_string(),
units::Unit::Percentage,
)
)
);
res.insert(
String::from("scaph_process_memory_virtual_bytes"),
(
String::from("Virtual RAM usage by the process, in bytes"),
Record::new(
record.timestamp,
record.process.virtual_memory.to_string(),
units::Unit::Percentage,
),
),
);
res.insert(
String::from("scaph_process_memory_bytes"),
(
String::from("Physical RAM usage by the process, in bytes"),
Record::new(
record.timestamp,
record.process.memory.to_string(),
units::Unit::Bytes,
),
),
);
res.insert(
String::from("scaph_process_disk_write_bytes"),
(
String::from("Data written on disk by the process, in bytes"),
Record::new(
record.timestamp,
record.process.disk_written.to_string(),
units::Unit::Bytes,
),
),
);
res.insert(
String::from("scaph_process_disk_read_bytes"),
(
String::from("Data read on disk by the process, in bytes"),
Record::new(
record.timestamp,
record.process.disk_read.to_string(),
units::Unit::Bytes,
),
),
);
res.insert(
String::from("scaph_process_disk_total_write_bytes"),
(
String::from("Total data written on disk by the process, in bytes"),
Record::new(
record.timestamp,
record.process.total_disk_written.to_string(),
units::Unit::Bytes,
),
),
);
res.insert(
String::from("scaph_process_disk_total_read_bytes"),
(
String::from("Total data read on disk by the process, in bytes"),
Record::new(
record.timestamp,
record.process.total_disk_read.to_string(),
units::Unit::Bytes,
),
),
);
let topo_conso = self.get_records_diff_power_microwatts();
if let Some(conso) = &topo_conso {
let conso_f64 = conso.value.parse::<f64>().unwrap();
let result = (conso_f64 * process_cpu_percentage as f64) / 100.0_f64;
res.insert(
String::from("scaph_process_power_consumption_microwatts"),
(
String::from("Total data read on disk by the process, in bytes"),
Record::new(record.timestamp, result.to_string(), units::Unit::MicroWatt),
),
);
}
}
Some(res)
}
// Per process metrics, from ProcessRecord during last refresh, returned in Record structs
pub fn get_process_cpu_usage_percentage(&self, pid: Pid) -> Option<Record> {
if let Some(record) = self.get_proc_tracker().get_process_last_record(pid) {
return Some(Record::new(
record.timestamp,
(record.process.cpu_usage_percentage / self.proc_tracker.nb_cores as f32)
.to_string(),
units::Unit::Percentage,
));
}
None
}
pub fn get_process_memory_virtual_bytes(&self, pid: Pid) -> Option<Record> {
if let Some(record) = self.get_proc_tracker().get_process_last_record(pid) {
return Some(Record::new(
record.timestamp,
record.process.virtual_memory.to_string(),
units::Unit::Bytes,
));
}
None
}
pub fn get_process_memory_bytes(&self, pid: Pid) -> Option<Record> {
if let Some(record) = self.get_proc_tracker().get_process_last_record(pid) {
return Some(Record::new(
record.timestamp,
record.process.memory.to_string(),
units::Unit::Bytes,
));
}
None
}
pub fn get_process_disk_written_bytes(&self, pid: Pid) -> Option<Record> {
if let Some(record) = self.get_proc_tracker().get_process_last_record(pid) {
return Some(Record::new(
record.timestamp,
record.process.disk_written.to_string(),
units::Unit::Bytes,
));
}
None
}
pub fn get_process_disk_read_bytes(&self, pid: Pid) -> Option<Record> {
if let Some(record) = self.get_proc_tracker().get_process_last_record(pid) {
return Some(Record::new(
record.timestamp,
record.process.disk_read.to_string(),
units::Unit::Bytes,
));
}
None
}
pub fn get_process_disk_total_read_bytes(&self, pid: Pid) -> Option<Record> {
if let Some(record) = self.get_proc_tracker().get_process_last_record(pid) {
return Some(Record::new(
record.timestamp,
record.process.total_disk_read.to_string(),
units::Unit::Bytes,
));
}
None
}
pub fn get_process_disk_total_write_bytes(&self, pid: Pid) -> Option<Record> {
if let Some(record) = self.get_proc_tracker().get_process_last_record(pid) {
return Some(Record::new(
record.timestamp,
record.process.total_disk_written.to_string(),
units::Unit::Bytes,
));
}
None
}
#[cfg(target_os = "linux")]
pub fn get_rapl_psys_energy_microjoules(&self) -> Option<Record> {
if let Some(psys) = self._sensor_data.get("psys") {
match &fs::read_to_string(format!("{psys}/energy_uj")) {
Ok(val) => {
debug!("Read PSYS from {psys}/energy_uj: {}", val.to_string());
return Some(Record::new(
current_system_time_since_epoch(),
val.to_string(),
units::Unit::MicroJoule,
));
}
Err(e) => {
warn!("PSYS Error: {:?}", e);
}
}
} else {
debug!("Asked for PSYS but there is no psys entry in sensor_data.");
}
None
}
/// # Safety
///
/// This function is unsafe rust as it calls get_msr_value function from msr_rapl sensor module.
/// It calls the msr_RAPL::MSR_PLATFORM_ENERGY_STATUS MSR address, which has been tested on several Intel x86 processors
/// but might fail on AMD (needs testing). That being said, it returns None if the msr query fails (which means if the Windows
/// driver fails.) and should not prevent from using a value coming from elsewhere, which means from another get_msr_value calls
/// targeting another msr address.
#[cfg(target_os = "windows")]
pub unsafe fn get_rapl_psys_energy_microjoules(&self) -> Option<Record> {
let msr_addr = msr_rapl::MSR_PLATFORM_ENERGY_STATUS;
match get_msr_value(0, msr_addr.into(), &self._sensor_data) {
Ok(res) => {
return Some(Record::new(
current_system_time_since_epoch(),
res.value.to_string(),
units::Unit::MicroJoule,
))
}
Err(e) => {
debug!("get_msr_value returned error : {}", e);
}
}
None
}
}
// !!!!!!!!!!!!!!!!! CPUSocket !!!!!!!!!!!!!!!!!!!!!!!
/// CPUSocket struct represents a CPU socket (matches physical_id attribute in /proc/cpuinfo),
/// owning CPU cores (processor in /proc/cpuinfo).
#[derive(Debug, Clone)]
pub struct CPUSocket {
/// Numerical ID of the CPU socket (physical_id in /proc/cpuinfo)
pub id: u16,
/// RAPL domains attached to the socket
pub domains: Vec<Domain>,
/// Text attributes linked to that socket, found in /proc/cpuinfo
pub attributes: Vec<Vec<HashMap<String, String>>>,
/// Path to the file that provides the counter for energy consumed by the socket, in microjoules.
pub counter_uj_path: String,
/// Comsumption records measured and stored by scaphandre for this socket.
pub record_buffer: Vec<Record>,
/// Maximum size of the record_buffer in kilobytes.
pub buffer_max_kbytes: u16,
/// CPU cores (core_id in /proc/cpuinfo) attached to the socket.
pub cpu_cores: Vec<CPUCore>,
/// Usage statistics records stored for this socket.
pub stat_buffer: Vec<CPUStat>,
///
#[allow(dead_code)]
pub sensor_data: HashMap<String, String>,
}
impl RecordGenerator for CPUSocket {
/// Generates a new record of the socket energy consumption and stores it in the record_buffer.
/// Returns a clone of this Record instance.
fn refresh_record(&mut self) {
match self.read_record() {
Ok(record) => {
self.record_buffer.push(record);
}
Err(e) => {
warn!(
"Could'nt read record from {}, error was: {:?}",
self.sensor_data
.get("source_file")
.unwrap_or(&String::from("SRCFILENOTKNOWN")),
e
);