From 930af968d9b488aab3aa38a7868cfae52a39c40f Mon Sep 17 00:00:00 2001 From: paomian Date: Mon, 16 Oct 2023 21:07:29 +0800 Subject: [PATCH] chore: change otel report url to resolve connectivity issues --- src/common/greptimedb-telemetry/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/greptimedb-telemetry/src/lib.rs b/src/common/greptimedb-telemetry/src/lib.rs index 57d680e40411..dbf06bda64b5 100644 --- a/src/common/greptimedb-telemetry/src/lib.rs +++ b/src/common/greptimedb-telemetry/src/lib.rs @@ -24,7 +24,7 @@ use reqwest::{Client, Response}; use serde::{Deserialize, Serialize}; /// The URL to report telemetry data. -pub const TELEMETRY_URL: &str = "https://api.greptime.cloud/db/otel/statistics"; +pub const TELEMETRY_URL: &str = "https://telemetry.greptime.dev/db/otel/statistics"; /// The local installation uuid cache file const UUID_FILE_NAME: &str = ".greptimedb-telemetry-uuid";