Skip to content

Commit 0d3fe79

Browse files
authored
Merge pull request #119 from datalust/dev
2023.2.0 Release
2 parents 3399980 + f25945d commit 0d3fe79

File tree

4 files changed

+10
-19
lines changed

4 files changed

+10
-19
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: 2 additions & 2 deletions
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.0</VersionPrefix>
4+
<VersionPrefix>2023.2.0</VersionPrefix>
55
<Authors>Datalust;Contributors</Authors>
66
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
77
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
@@ -15,7 +15,7 @@
1515
</PropertyGroup>
1616

1717
<ItemGroup>
18-
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
18+
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
1919
<PackageReference Include="Tavis.UriTemplates" Version="2.0.0" />
2020
</ItemGroup>
2121

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net461;netcoreapp2.2;net6.0</TargetFrameworks>
4+
<TargetFrameworks>net462;net6.0</TargetFrameworks>
55
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
66
</PropertyGroup>
77

@@ -15,9 +15,4 @@
1515
<PackageReference Include="xunit" Version="2.3.1" />
1616
</ItemGroup>
1717

18-
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' ">
19-
<Reference Include="System" />
20-
<Reference Include="Microsoft.CSharp" />
21-
</ItemGroup>
22-
2318
</Project>

0 commit comments

Comments
 (0)