[Lldb-commits] [lldb] [LLDB][Telemetry]Defind telemetry::CommandInfo (PR #129354)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Wed Mar 5 08:47:54 PST 2025


================
@@ -28,6 +29,17 @@
 namespace lldb_private {
 namespace telemetry {
 
+struct LLDBConfig : public ::llvm::telemetry::Config {
+  // If true, we will collect full details about a debug command (eg., args and
+  // original command). Note: This may contain PII, hence can only be enabled by
+  // the vendor while creating the Manager.
+  const bool m_detailed_command_telemetry;
----------------
JDevlieghere wrote:

Ack, I think this is fine as is. Given that this is a `struct`, please drop the `m_` prefix. 
```suggestion
  // If true, we will collect full details about a debug command (eg., args and
  // original command). Note: This may contain PII, hence can only be enabled by
  // the vendor while creating the Manager.
  const bool detailed_command_telemetry;
```

https://github.com/llvm/llvm-project/pull/129354


More information about the lldb-commits mailing list