[Awake]Add telemetry (#22214)

* [Awake]Add telemetry

* fix wrong event call
This commit is contained in:
Jaime Bernardo
2022-11-21 19:24:56 +00:00
committed by GitHub
parent 994652a535
commit e160e223f0
6 changed files with 53 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
// 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;
using Microsoft.PowerToys.Telemetry;
using Microsoft.PowerToys.Telemetry.Events;
namespace Awake.Telemetry
{
[EventData]
public class AwakeTimedKeepAwakeEvent : EventBase, IEvent
{
public PartA_PrivTags PartA_PrivTags => PartA_PrivTags.ProductAndServiceUsage;
}
}