-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #58 from datalust/dev
5.0.0 release
- Loading branch information
Showing
56 changed files
with
708 additions
and
437 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -252,3 +252,4 @@ paket-files/ | |
*.sln.iml | ||
|
||
.vscode/ | ||
*.orig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project> | ||
<PropertyGroup> | ||
<LangVersion>latest</LangVersion> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
using System; | ||
using System.Linq; | ||
using System.Threading.Tasks; | ||
using DocoptNet; | ||
using Seq.Api; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,27 @@ | ||
using System; | ||
using System.Net; | ||
|
||
namespace Seq.Api.Client | ||
{ | ||
/// <summary> | ||
/// Thrown when an action cannot be performed. | ||
/// </summary> | ||
public class SeqApiException : Exception | ||
{ | ||
public SeqApiException(string message) | ||
/// <summary> | ||
/// Construct a <see cref="SeqApiException"/> with the given message and status code. | ||
/// </summary> | ||
/// <param name="message">A message describing the error.</param> | ||
/// <param name="statusCode">The corresponding status code returned from Seq, if available.</param> | ||
public SeqApiException(string message, HttpStatusCode? statusCode) | ||
: base(message) | ||
{ | ||
StatusCode = statusCode; | ||
} | ||
|
||
/// <summary> | ||
/// The status code returned from Seq, if available. | ||
/// </summary> | ||
public HttpStatusCode? StatusCode { get; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
namespace Seq.Api.Model.AppInstances | ||
{ | ||
public class AppInstanceMetricsPart | ||
{ | ||
public int ReceivedEventsPerMinute { get; set; } | ||
public int EmittedEventsPerMinute { get; set; } | ||
public long ProcessWorkingSetBytes { get; set; } | ||
public bool IsRunning { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,5 @@ | |
{ | ||
public class DeleteResultPart | ||
{ | ||
public long DeletedEventCount { get; set; } | ||
} | ||
} |
Oops, something went wrong.