We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f91572 commit 0f1ff6eCopy full SHA for 0f1ff6e
src/rust/lqosd/src/throughput_tracker/stats_submission.rs
@@ -53,6 +53,18 @@ pub(crate) fn submit_throughput_stats(
53
counter: u8,
54
system_usage_actor: crossbeam_channel::Sender<tokio::sync::oneshot::Sender<SystemStats>>,
55
) {
56
+ let config = load_config();
57
+ if config.is_err() {
58
+ return;
59
+ }
60
+ let config = config.unwrap();
61
+ if config.long_term_stats.gather_stats == false {
62
63
64
+ if config.long_term_stats.license_key.is_none() {
65
66
67
+
68
let mut metrics = LtsSubmitMetrics::new();
69
let mut lts2_needs_shaped_devices = false;
70
// If ShapedDevices has changed, notify the stats thread
0 commit comments