diff options
Diffstat (limited to 'src/common/telemetry.h')
| -rw-r--r-- | src/common/telemetry.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/common/telemetry.h b/src/common/telemetry.h index 3bab75b59..8d6ab986b 100644 --- a/src/common/telemetry.h +++ b/src/common/telemetry.h | |||
| @@ -180,4 +180,16 @@ struct NullVisitor : public VisitorInterface { | |||
| 180 | void Complete() override {} | 180 | void Complete() override {} |
| 181 | }; | 181 | }; |
| 182 | 182 | ||
| 183 | /// Appends build-specific information to the given FieldCollection, | ||
| 184 | /// such as branch name, revision hash, etc. | ||
| 185 | void AppendBuildInfo(FieldCollection& fc); | ||
| 186 | |||
| 187 | /// Appends CPU-specific information to the given FieldCollection, | ||
| 188 | /// such as instruction set extensions, etc. | ||
| 189 | void AppendCPUInfo(FieldCollection& fc); | ||
| 190 | |||
| 191 | /// Appends OS-specific information to the given FieldCollection, | ||
| 192 | /// such as platform name, etc. | ||
| 193 | void AppendOSInfo(FieldCollection& fc); | ||
| 194 | |||
| 183 | } // namespace Telemetry | 195 | } // namespace Telemetry |