[Lldb-commits] [lldb] [LLDB][Telemetry]Define DebuggerTelemetryInfo and related methods (PR #127696)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Thu Feb 27 12:55:54 PST 2025
================
@@ -73,9 +100,50 @@ class TelemetryManager : public llvm::telemetry::Manager {
private:
std::unique_ptr<llvm::telemetry::Config> m_config;
+ // Each instance of a TelemetryManager is assigned a unique ID.
+ const std::string m_id;
----------------
JDevlieghere wrote:
Should we store this as a `UUID` (and convert it to a string in the serializer)? I think having a static method in the `UUID` class that generates a random UUID might be generally useful.
https://github.com/llvm/llvm-project/pull/127696
More information about the lldb-commits
mailing list