Skip to content

Commit b508530

Browse files
committed
Minor Changes
1 parent 9103ce8 commit b508530

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

src/Project/Sucrose.Reportdog/Helper/Initialize.cs

+5
Original file line numberDiff line numberDiff line change
@@ -187,19 +187,23 @@ private static async Task SendAnalytic()
187187
PerformanceCounter = SMMB.PerformanceCounter,
188188
CultureCode = SMMG.Culture.ToUpperInvariant(),
189189
InputModuleType = $"{SSDMME.InputModuleType}",
190+
LockPerformance = $"{SSDMMB.LockPerformance}",
190191
StoreServerType = $"{SSDMMP.StoreServerType}",
191192
DisplayScreenType = $"{SMME.DisplayScreenType}",
192193
FocusPerformance = $"{SSDMMB.FocusPerformance}",
194+
SleepPerformance = $"{SSDMMB.SleepPerformance}",
193195
UpdateExtensionType = $"{SSCMMU.ExtensionType}",
194196
BackgroundStretch = $"{SSDMMP.BackgroundStretch}",
195197
CommunicationType = $"{SSDMMB.CommunicationType}",
196198
MemoryPerformance = $"{SSDMMB.MemoryPerformance}",
197199
RemotePerformance = $"{SSDMMB.RemotePerformance}",
198200
CyclingTransitionType = $"{SSDMMC.TransitionType}",
199201
BatteryPerformance = $"{SSDMMB.BatteryPerformance}",
202+
ConsolePerformance = $"{SSDMMB.ConsolePerformance}",
200203
NetworkPerformance = $"{SSDMMB.NetworkPerformance}",
201204
NumberOfProcessors = SSCHOS.GetNumberOfProcessors(),
202205
PausePerformance = $"{SSDMMB.PausePerformanceType}",
206+
SessionPerformance = $"{SSDMMB.SessionPerformance}",
203207
VirtualPerformance = $"{SSDMMB.VirtualPerformance}",
204208
GraphicAdapters = string.Join(",", SSSHU.GetGraphic()),
205209
NetworkAdapters = string.Join(",", SSSHU.GetNetwork()),
@@ -208,6 +212,7 @@ private static async Task SendAnalytic()
208212
FullScreenPerformance = $"{SSDMMB.FullScreenPerformance}",
209213
ProcessArchitecture = SSCHOS.GetProcessArchitectureText(),
210214
ProcessorArchitecture = SSCHOS.GetProcessorArchitecture(),
215+
ScreenSaverPerformance = $"{SSDMMB.ScreenSaverPerformance}",
211216
BatterySaverPerformance = $"{SSDMMB.BatterySaverPerformance}",
212217
OperatingSystemArchitecture = SWHSI.GetSystemInfoArchitecture()
213218
};

src/Shared/Sucrose.Shared.Space/Model/AnalyticTemeletryData.cs

+15
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,9 @@ internal class AnalyticTelemetryData
172172
[JsonProperty("LibraryLocation", Required = Required.Always)]
173173
public string LibraryLocation { get; set; }
174174

175+
[JsonProperty("LockPerformance", Required = Required.Always)]
176+
public string LockPerformance { get; set; }
177+
175178
[JsonProperty("NetworkAdapters", Required = Required.Always)]
176179
public string NetworkAdapters { get; set; }
177180

@@ -205,6 +208,9 @@ internal class AnalyticTelemetryData
205208
[JsonProperty("PerformanceCounter", Required = Required.Always)]
206209
public bool PerformanceCounter { get; set; }
207210

211+
[JsonProperty("SleepPerformance", Required = Required.Always)]
212+
public string SleepPerformance { get; set; }
213+
208214
[JsonProperty("UpdateModuleType", Required = Required.Always)]
209215
public string UpdateModuleType { get; set; }
210216

@@ -241,6 +247,9 @@ internal class AnalyticTelemetryData
241247
[JsonProperty("BatteryPerformance", Required = Required.Always)]
242248
public string BatteryPerformance { get; set; }
243249

250+
[JsonProperty("ConsolePerformance", Required = Required.Always)]
251+
public string ConsolePerformance { get; set; }
252+
244253
[JsonProperty("CyclingTransitionTime", Required = Required.Always)]
245254
public int CyclingTransitionTime { get; set; }
246255

@@ -253,6 +262,9 @@ internal class AnalyticTelemetryData
253262
[JsonProperty("NetworkPerformance", Required = Required.Always)]
254263
public string NetworkPerformance { get; set; }
255264

265+
[JsonProperty("SessionPerformance", Required = Required.Always)]
266+
public string SessionPerformance { get; set; }
267+
256268
[JsonProperty("VirtualPerformance", Required = Required.Always)]
257269
public string VirtualPerformance { get; set; }
258270

@@ -280,6 +292,9 @@ internal class AnalyticTelemetryData
280292
[JsonProperty("ProcessorArchitecture", Required = Required.Always)]
281293
public string ProcessorArchitecture { get; set; }
282294

295+
[JsonProperty("ScreenSaverPerformance", Required = Required.Always)]
296+
public string ScreenSaverPerformance { get; set; }
297+
283298
[JsonProperty("BatterySaverPerformance", Required = Required.Always)]
284299
public string BatterySaverPerformance { get; set; }
285300

0 commit comments

Comments
 (0)