Skip to content

Commit 0c84dbe

Browse files
committed
[#24029] Update the callhome diagnostics not to send gflags details.
Summary: Currently, collecting gflags information is redundant data between yugabyted and YBDB callhome. It was decided to not send gflags information from yugabyted, instead correlated the data using cluster_uuid, node_uuid, server_type for fetching the gflags details. Test Plan: manual test Reviewers: sgarg-yb Reviewed By: sgarg-yb Subscribers: yugabyted-dev Differential Revision: https://phorge.dev.yugabyte.com/D38263
1 parent a50a730 commit 0c84dbe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/yugabyted

+2-2
Original file line numberDiff line numberDiff line change
@@ -8283,8 +8283,8 @@ class Diagnostics(object):
82838283
payload = {
82848284
"data_dir_size": self.get_dir_size(self.configs.saved_data.get("data_dir")),
82858285
"num_cpus": multiprocessing.cpu_count(),
8286-
"master_flags": self.configs.saved_data.get("master_flags"),
8287-
"tserver_flags": self.configs.saved_data.get("tserver_flags"),
8286+
# "master_flags": self.configs.saved_data.get("master_flags"),
8287+
# "tserver_flags": self.configs.saved_data.get("tserver_flags"),
82888288
"is_docker" : str(os.path.exists("/.dockerenv"))
82898289
}
82908290
if Diagnostics.first_install is not None:

0 commit comments

Comments
 (0)