forked from qdrant/qdrant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp_telemetry.rs
160 lines (148 loc) · 4.91 KB
/
app_telemetry.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
use std::path::Path;
use chrono::{DateTime, SubsecRound, Utc};
use common::types::{DetailsLevel, TelemetryDetail};
use schemars::JsonSchema;
use segment::common::anonymize::Anonymize;
use serde::Serialize;
use crate::settings::Settings;
pub struct AppBuildTelemetryCollector {
pub startup: DateTime<Utc>,
}
impl AppBuildTelemetryCollector {
pub fn new() -> Self {
AppBuildTelemetryCollector {
startup: Utc::now().round_subsecs(2),
}
}
}
#[derive(Serialize, Clone, Debug, JsonSchema)]
pub struct AppFeaturesTelemetry {
pub debug: bool,
pub web_feature: bool,
pub service_debug_feature: bool,
pub recovery_mode: bool,
}
#[derive(Serialize, Clone, Debug, JsonSchema)]
pub struct RunningEnvironmentTelemetry {
distribution: Option<String>,
distribution_version: Option<String>,
is_docker: bool,
cores: Option<usize>,
ram_size: Option<usize>,
disk_size: Option<usize>,
cpu_flags: String,
}
#[derive(Serialize, Clone, Debug, JsonSchema)]
pub struct AppBuildTelemetry {
pub name: String,
pub version: String,
#[serde(skip_serializing_if = "Option::is_none")]
pub features: Option<AppFeaturesTelemetry>,
#[serde(skip_serializing_if = "Option::is_none")]
pub system: Option<RunningEnvironmentTelemetry>,
#[serde(skip_serializing_if = "Option::is_none")]
pub jwt_rbac: Option<bool>,
pub startup: DateTime<Utc>,
}
impl AppBuildTelemetry {
pub fn collect(
detail: TelemetryDetail,
collector: &AppBuildTelemetryCollector,
settings: &Settings,
) -> Self {
AppBuildTelemetry {
name: env!("CARGO_PKG_NAME").to_string(),
version: env!("CARGO_PKG_VERSION").to_string(),
features: (detail.level >= DetailsLevel::Level1).then(|| AppFeaturesTelemetry {
debug: cfg!(debug_assertions),
web_feature: cfg!(feature = "web"),
service_debug_feature: cfg!(feature = "service_debug"),
recovery_mode: settings.storage.recovery_mode.is_some(),
}),
system: (detail.level >= DetailsLevel::Level1).then(get_system_data),
jwt_rbac: settings.service.jwt_rbac,
startup: collector.startup,
}
}
}
fn get_system_data() -> RunningEnvironmentTelemetry {
let distribution = if let Ok(release) = sys_info::linux_os_release() {
release.id
} else {
sys_info::os_type().ok()
};
let distribution_version = if let Ok(release) = sys_info::linux_os_release() {
release.version_id
} else {
sys_info::os_release().ok()
};
let mut cpu_flags = vec![];
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
{
if std::arch::is_x86_feature_detected!("sse") {
cpu_flags.push("sse");
}
if std::arch::is_x86_feature_detected!("avx") {
cpu_flags.push("avx");
}
if std::arch::is_x86_feature_detected!("avx2") {
cpu_flags.push("avx2");
}
if std::arch::is_x86_feature_detected!("fma") {
cpu_flags.push("fma");
}
if std::arch::is_x86_feature_detected!("avx512f") {
cpu_flags.push("avx512f");
}
}
#[cfg(all(target_arch = "aarch64", target_feature = "neon"))]
{
if std::arch::is_aarch64_feature_detected!("neon") {
cpu_flags.push("neon");
}
}
RunningEnvironmentTelemetry {
distribution,
distribution_version,
is_docker: cfg!(unix) && Path::new("/.dockerenv").exists(),
cores: sys_info::cpu_num().ok().map(|x| x as usize),
ram_size: sys_info::mem_info().ok().map(|x| x.total as usize),
disk_size: sys_info::disk_info().ok().map(|x| x.total as usize),
cpu_flags: cpu_flags.join(","),
}
}
impl Anonymize for AppFeaturesTelemetry {
fn anonymize(&self) -> Self {
AppFeaturesTelemetry {
debug: self.debug,
web_feature: self.web_feature,
service_debug_feature: self.service_debug_feature,
recovery_mode: self.recovery_mode,
}
}
}
impl Anonymize for AppBuildTelemetry {
fn anonymize(&self) -> Self {
AppBuildTelemetry {
name: self.name.clone(),
version: self.version.clone(),
features: self.features.anonymize(),
system: self.system.anonymize(),
jwt_rbac: self.jwt_rbac,
startup: self.startup.anonymize(),
}
}
}
impl Anonymize for RunningEnvironmentTelemetry {
fn anonymize(&self) -> Self {
RunningEnvironmentTelemetry {
distribution: self.distribution.clone(),
distribution_version: self.distribution_version.clone(),
is_docker: self.is_docker,
cores: self.cores,
ram_size: self.ram_size.anonymize(),
disk_size: self.disk_size.anonymize(),
cpu_flags: self.cpu_flags.clone(),
}
}
}