Skip to content

Commit 68ef561

Browse files
authored
Merge pull request #118 from KodrAus/chore/2023.1.2
Updates for 2023.1.2
2 parents 422848f + 464ea25 commit 68ef561

File tree

3 files changed

+8
-12
lines changed

3 files changed

+8
-12
lines changed

src/Seq.Api/Model/Diagnostics/ServerMetricsEntity.cs

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © Datalust and contributors.
1+
// Copyright © Datalust and contributors.
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -64,21 +64,11 @@ public ServerMetricsEntity()
6464
/// </summary>
6565
public TimeSpan ProcessUptime { get; set; }
6666

67-
/// <summary>
68-
/// The number of bytes working set held by the Seq server process.
69-
/// </summary>
70-
public long ProcessWorkingSetBytes { get; set; }
71-
7267
/// <summary>
7368
/// The number of threads running in the Seq server process.
7469
/// </summary>
7570
public int ProcessThreads { get; set; }
7671

77-
/// <summary>
78-
/// The proportion of system physical memory that is currently allocated.
79-
/// </summary>
80-
public double SystemMemoryUtilization { get; set; }
81-
8272
/// <summary>
8373
/// The number of queries and searches executed in the past minute.
8474
/// </summary>

src/Seq.Api/Model/Settings/InternalErrorReportingSettingsPart.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,11 @@ public class InternalErrorReportingSettingsPart
3131
/// at Datalust can respond with fix/mitigation information.
3232
/// </summary>
3333
public string ReplyEmail { get; set; }
34+
35+
/// <summary>
36+
/// If <c>true</c>, anonymized usage telemetry will be sent
37+
/// automatically to Datalust.
38+
/// </summary>
39+
public bool UsageTelemetryEnabled { get; set; }
3440
}
3541
}

src/Seq.Api/Seq.Api.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<Description>Client library for the Seq HTTP API.</Description>
4-
<VersionPrefix>2023.1.1</VersionPrefix>
4+
<VersionPrefix>2023.1.2</VersionPrefix>
55
<Authors>Datalust;Contributors</Authors>
66
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
77
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

0 commit comments

Comments
 (0)