[llvm] [llvm]Add a simple Telemetry framework (PR #102323)
Alina Sbirlea via llvm-commits
llvm-commits at lists.llvm.org
Mon Sep 23 12:11:19 PDT 2024
================
@@ -0,0 +1,214 @@
+===========================
+Telemetry framework in LLVM
+===========================
+
+.. contents::
+ :local:
+
+.. toctree::
+ :hidden:
+
+===========================
+Telemetry framework in LLVM
+===========================
+
+Objective
+=========
+
+Provides a common framework in LLVM for collecting various usage and performance
+metrics.
+It is located at `llvm/Telemetry/Telemetry.h`
+
+Characteristics
+---------------
+* Configurable and extensible by:
+
+ * Tools: any tool that wants to use Telemetry can extend and customize it.
+ * Vendors: Toolchain vendors can also provide custom implementation of the
+ library, which could either override or extend the given tool's upstream
+ implementation, to best fit their organization's usage and privacy models.
+ * End users of such tool can also configure Telemetry(as allowed by their
----------------
alinas wrote:
```suggestion
* End users of such tool can also configure Telemetry (as allowed by their
```
https://github.com/llvm/llvm-project/pull/102323
More information about the llvm-commits
mailing list