Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: send telemetry data to backend #4152

Merged
merged 8 commits into from
Mar 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions src/dfx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ bytes.workspace = true
candid = { workspace = true }
candid_parser = { workspace = true, features = ["random", "assist"] }
cargo_metadata = "0.18.1"
chrono = "0.4.39"
ci_info = "0.14"
clap = { workspace = true, features = [
"derive",
Expand Down Expand Up @@ -124,6 +125,7 @@ time = { workspace = true, features = [
] }
tokio = { workspace = true, features = ["full"] }
url.workspace = true
uuid = { version = "1.15.1", features = [ "v4", ] }
walkdir.workspace = true
walrus = "0.21.1"
which = "4.2.5"
Expand Down
5 changes: 5 additions & 0 deletions src/dfx/src/commands/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ mod ping;
mod quickstart;
mod remote;
mod schema;
mod send_telemetry;
mod start;
mod stop;
mod toolchain;
Expand Down Expand Up @@ -60,6 +61,8 @@ pub enum DfxCommand {
Quickstart(quickstart::QuickstartOpts),
Remote(remote::RemoteOpts),
Schema(schema::SchemaOpts),
#[command(name = "_send-telemetry", hide = true)]
SendTelemetry(send_telemetry::SendTelemetryOpts),
Start(start::StartOpts),
Stop(stop::StopOpts),
#[command(hide = true)]
Expand Down Expand Up @@ -94,6 +97,7 @@ pub fn exec(env: &dyn Environment, cmd: DfxCommand) -> DfxResult {
DfxCommand::Quickstart(v) => quickstart::exec(env, v),
DfxCommand::Remote(v) => remote::exec(env, v),
DfxCommand::Schema(v) => schema::exec(v),
DfxCommand::SendTelemetry(v) => send_telemetry::exec(v),
DfxCommand::Start(v) => start::exec(env, v),
DfxCommand::Stop(v) => stop::exec(env, v),
DfxCommand::Toolchain(v) => toolchain::exec(env, v),
Expand All @@ -105,6 +109,7 @@ pub fn exec(env: &dyn Environment, cmd: DfxCommand) -> DfxResult {
pub fn exec_without_env(cmd: DfxCommand) -> DfxResult {
match cmd {
DfxCommand::Schema(v) => schema::exec(v),
DfxCommand::SendTelemetry(v) => send_telemetry::exec(v),
_ => bail!("Cannot execute this command without environment."),
}
}
20 changes: 20 additions & 0 deletions src/dfx/src/commands/send_telemetry.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
use crate::lib::error::DfxResult;
use crate::lib::telemetry::Telemetry;
use clap::Parser;
use url::Url;

const DEFAULT_URL: &str = "https://sdk.telemetry.dfinity.network";
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe this should come from ToolConfig, which would allow tests to override it.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think that would be helpful, but since we're not automatically testing this for now maybe you can just leave a hint in a comment?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would, but because that would dismiss your CR approval, I'll let these comments serve for now.


#[derive(Parser)]
#[command(hide = true)]
pub struct SendTelemetryOpts {
#[clap(long)]
url: Option<String>,
}

pub fn exec(opts: SendTelemetryOpts) -> DfxResult {
let url = opts.url.unwrap_or_else(|| DEFAULT_URL.to_string());
let url = Url::parse(&url)?;

Telemetry::send(&url)
}
Loading