From 0c84dbe7070a8b308f86889d4e3469a593975bcb Mon Sep 17 00:00:00 2001 From: Nikhil Chandrappa Date: Fri, 20 Sep 2024 12:16:57 +0000 Subject: [PATCH] [#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 --- bin/yugabyted | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/yugabyted b/bin/yugabyted index 648a3dea0ce3..f69ddd703e8b 100755 --- a/bin/yugabyted +++ b/bin/yugabyted @@ -8283,8 +8283,8 @@ class Diagnostics(object): payload = { "data_dir_size": self.get_dir_size(self.configs.saved_data.get("data_dir")), "num_cpus": multiprocessing.cpu_count(), - "master_flags": self.configs.saved_data.get("master_flags"), - "tserver_flags": self.configs.saved_data.get("tserver_flags"), + # "master_flags": self.configs.saved_data.get("master_flags"), + # "tserver_flags": self.configs.saved_data.get("tserver_flags"), "is_docker" : str(os.path.exists("/.dockerenv")) } if Diagnostics.first_install is not None: