-
Notifications
You must be signed in to change notification settings - Fork 20
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 #130 from datalust/dev
2024.1.0 Release
- Loading branch information
Showing
6 changed files
with
92 additions
and
5 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
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,35 @@ | ||
namespace Seq.Api.Model.Diagnostics | ||
{ | ||
/// <summary> | ||
/// Metrics related to cluster activity. | ||
/// </summary> | ||
public class ClusterMetricsPart | ||
{ | ||
/// <summary> | ||
/// Construct a <see cref="ClusterMetricsPart"/>. | ||
/// </summary> | ||
public ClusterMetricsPart() | ||
{ | ||
} | ||
|
||
/// <summary> | ||
/// A connection to the leader node was accepted. | ||
/// </summary> | ||
public ulong ConnectionAccepted { get; set; } | ||
|
||
/// <summary> | ||
/// A connection to the leader node was rejected due to an invalid authentication key. | ||
/// </summary> | ||
public ulong ConnectionInvalidKey { get; set; } | ||
|
||
/// <summary> | ||
/// A connection to the leader node was successfully authenticated and established. | ||
/// </summary> | ||
public ulong ConnectionEstablished { get; set; } | ||
|
||
/// <summary> | ||
/// A connection to the leader node was could not be established. | ||
/// </summary> | ||
public ulong ConnectionNotEstablished { 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
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