-
-
Notifications
You must be signed in to change notification settings - Fork 14
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 #1097 from ITfoxtec/test
Test
- Loading branch information
Showing
21 changed files
with
140 additions
and
73 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
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
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
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
22 changes: 22 additions & 0 deletions
22
src/FoxIDs.Shared/Models/Tracks/Logs/Logging/OpenSearchErrorLogItem.cs
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,22 @@ | ||
namespace FoxIDs.Models | ||
{ | ||
public class OpenSearchErrorLogItem : OpenSearchLogItemBase | ||
{ | ||
public string Message { get; set; } | ||
public string Domain { get; set; } | ||
public string RequestPath { get; set; } | ||
public string GrantType { get; set; } | ||
public string UpPartyClientId { get; set; } | ||
public string UpPartyStatus { get; set; } | ||
public string DownPartyClientId { get; set; } | ||
public string AccountAction { get; set; } | ||
public string SequenceCulture { get; set; } | ||
public string Issuer { get; set; } | ||
public string Status { get; set; } | ||
public string SessionId { get; set; } | ||
public string ExternalSessionId { get; set; } | ||
public string UserId { get; set; } | ||
public string Email { get; set; } | ||
public int FailingLoginCount { get; set; } | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
src/FoxIDs.Shared/Models/Tracks/Logs/Logging/OpenSearchEventLogItem.cs
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,13 @@ | ||
namespace FoxIDs.Models | ||
{ | ||
public class OpenSearchEventLogItem : OpenSearchLogItemBase | ||
{ | ||
public string Message { get; set; } | ||
public string UserId { get; set; } | ||
public string Email { get; set; } | ||
public string UsageType { get; set; } | ||
public string UsageLoginType { get; set; } | ||
public string UsageTokenType { get; set; } | ||
public double UsageAddRating { get; set; } | ||
} | ||
} |
19 changes: 2 additions & 17 deletions
19
src/FoxIDs.Shared/Models/Tracks/Logs/Logging/OpenSearchLogItem.cs
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
22 changes: 22 additions & 0 deletions
22
src/FoxIDs.Shared/Models/Tracks/Logs/Logging/OpenSearchLogItemBase.cs
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,22 @@ | ||
using System; | ||
|
||
namespace FoxIDs.Models | ||
{ | ||
public class OpenSearchLogItemBase | ||
{ | ||
public DateTimeOffset Timestamp { get; set; } | ||
public string LogType { get; set; } | ||
public string TenantName { get; set; } | ||
public string TrackName { get; set; } | ||
public string OperationId { get; set; } | ||
public string RequestId { get; set; } | ||
public string SequenceId { get; set; } | ||
public string ExternalSequenceId { get; set; } | ||
|
||
public string MachineName { get; set; } | ||
public string ClientIP { get; set; } | ||
public string UserAgent { get; set; } | ||
public string UpPartyId { get; set; } | ||
public string DownPartyId { get; set; } | ||
} | ||
} |
8 changes: 8 additions & 0 deletions
8
src/FoxIDs.Shared/Models/Tracks/Logs/Logging/OpenSearchMetricLogItem.cs
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,8 @@ | ||
namespace FoxIDs.Models | ||
{ | ||
public class OpenSearchMetricLogItem : OpenSearchLogItemBase | ||
{ | ||
public string Message { get; set; } | ||
public double Value { get; set; } | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
src/FoxIDs.Shared/Models/Tracks/Logs/Logging/OpenSearchTraceLogItem.cs
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,22 @@ | ||
namespace FoxIDs.Models | ||
{ | ||
public class OpenSearchTraceLogItem : OpenSearchLogItemBase | ||
{ | ||
public string Message { get; set; } | ||
public string Domain { get; set; } | ||
public string RequestPath { get; set; } | ||
public string GrantType { get; set; } | ||
public string UpPartyClientId { get; set; } | ||
public string UpPartyStatus { get; set; } | ||
public string DownPartyClientId { get; set; } | ||
public string AccountAction { get; set; } | ||
public string SequenceCulture { get; set; } | ||
public string Issuer { get; set; } | ||
public string Status { get; set; } | ||
public string SessionId { get; set; } | ||
public string ExternalSessionId { get; set; } | ||
public string UserId { get; set; } | ||
public string Email { get; set; } | ||
public int FailingLoginCount { 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
Oops, something went wrong.