summaryrefslogtreecommitdiffstats
path: root/src/app/data_farmer.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/data_farmer.rs')
-rw-r--r--src/app/data_farmer.rs8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/app/data_farmer.rs b/src/app/data_farmer.rs
index f0427c5d..2749c9bc 100644
--- a/src/app/data_farmer.rs
+++ b/src/app/data_farmer.rs
@@ -13,22 +13,20 @@
//! memory usage and higher CPU usage - you will be trying to process more and
//! more points as this is used!
-use once_cell::sync::Lazy;
+use std::{time::Instant, vec::Vec};
use fxhash::FxHashMap;
use itertools::Itertools;
-
-use std::{time::Instant, vec::Vec};
+use once_cell::sync::Lazy;
+use regex::Regex;
#[cfg(feature = "battery")]
use crate::data_harvester::batteries;
-
use crate::{
data_harvester::{cpu, disks, memory, network, processes::ProcessHarvest, temperature, Data},
utils::gen_util::{get_decimal_bytes, GIGA_LIMIT},
Pid,
};
-use regex::Regex;
pub type TimeOffset = f64;
pub type Value = f64;