/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/common/Telemetry/TelemetryBase.cs
60 строк
2 KB
Josh Soref
Upgrade to check-spelling v0.0.24 (#36235)
06 дек 2024, 19:33
Не верифицирован
06 дек 2024, 19:33
74a1a6e
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Diagnostics.Tracing; // WARNING: THIS FILE GETS REPLACED ON THE BUILD FARM namespace Microsoft.PowerToys.Telemetry { /// <summary> /// Privacy Tag values /// </summary> public enum PartA_PrivTags : ulong { /// <nodoc/> None = 0, /// <nodoc/> ProductAndServicePerformance = 1, /// <nodoc/> ProductAndServiceUsage = 2, } /// <summary> /// Base class for telemetry events. /// </summary> public class TelemetryBase : EventSource { /// <summary> /// The event tag for this event source. /// </summary> public const EventTags ProjectTelemetryTagProductAndServicePerformance = (EventTags)0x0u; /// <summary> /// The event keyword for this event source. /// </summary> public const EventKeywords ProjectKeywordMeasure = (EventKeywords)0x0; /// <summary> /// Group ID for PowerToys project. /// </summary> private static readonly string[] PowerToysTelemetryTraits = { "ETW_GROUP", "{42749043-438c-46a2-82be-c6cbeb192ff2}" }; /// <summary> /// Initializes a new instance of the <see cref="TelemetryBase"/> class. /// </summary> /// <param name="eventSourceName">.</param> public TelemetryBase( string eventSourceName) : base( eventSourceName, EventSourceSettings.EtwSelfDescribingEventFormat, PowerToysTelemetryTraits) { return; } } }