-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
49a6f25
commit e9c4310
Showing
12 changed files
with
79 additions
and
68 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
101 changes: 50 additions & 51 deletions
101
src/ZiggyCreatures.FusionCache/FusionCacheDiagnostics.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 |
---|---|---|
@@ -1,54 +1,53 @@ | ||
namespace ZiggyCreatures.Caching.Fusion | ||
namespace ZiggyCreatures.Caching.Fusion; | ||
|
||
/// <summary> | ||
/// A support class for FusionCache diagnostics. | ||
/// </summary> | ||
public static class FusionCacheDiagnostics | ||
{ | ||
/// <summary> | ||
/// A support class for FusionCache diagnostics. | ||
/// </summary> | ||
public static class FusionCacheDiagnostics | ||
{ | ||
/// <summary> | ||
/// The current version of FusionCache. | ||
/// </summary> | ||
public const string FusionCacheVersion = "1.3.0"; | ||
|
||
/// <summary> | ||
/// The activity source name for FusionCache. | ||
/// </summary> | ||
public const string ActivitySourceName = "ZiggyCreatures.Caching.Fusion"; | ||
|
||
/// <summary> | ||
/// The activity source name for the FusionCache memory level. | ||
/// </summary> | ||
public const string ActivitySourceNameMemoryLevel = "ZiggyCreatures.Caching.Fusion.Memory"; | ||
|
||
/// <summary> | ||
/// The activity source name for the FusionCache distributed level. | ||
/// </summary> | ||
public const string ActivitySourceNameDistributedLevel = "ZiggyCreatures.Caching.Fusion.Distributed"; | ||
|
||
/// <summary> | ||
/// The activity source name for the FusionCache backplane. | ||
/// </summary> | ||
public const string ActivitySourceNameBackplane = "ZiggyCreatures.Caching.Fusion.Backplane"; | ||
|
||
|
||
/// <summary> | ||
/// The meter name for FusionCache. | ||
/// </summary> | ||
public const string MeterName = "ZiggyCreatures.Caching.Fusion"; | ||
|
||
/// <summary> | ||
/// The meter name for the FusionCache memory level. | ||
/// </summary> | ||
public const string MeterNameMemoryLevel = "ZiggyCreatures.Caching.Fusion.Memory"; | ||
|
||
/// <summary> | ||
/// The meter name for the FusionCache distributed level. | ||
/// </summary> | ||
public const string MeterNameDistributedLevel = "ZiggyCreatures.Caching.Fusion.Distributed"; | ||
|
||
/// <summary> | ||
/// The meter name for the FusionCache backplane. | ||
/// </summary> | ||
public const string MeterNameBackplane = "ZiggyCreatures.Caching.Fusion.Backplane"; | ||
} | ||
/// The current version of FusionCache. | ||
/// </summary> | ||
public const string FusionCacheVersion = "1.4.0"; | ||
|
||
/// <summary> | ||
/// The activity source name for FusionCache. | ||
/// </summary> | ||
public const string ActivitySourceName = "ZiggyCreatures.Caching.Fusion"; | ||
|
||
/// <summary> | ||
/// The activity source name for the FusionCache memory level. | ||
/// </summary> | ||
public const string ActivitySourceNameMemoryLevel = "ZiggyCreatures.Caching.Fusion.Memory"; | ||
|
||
/// <summary> | ||
/// The activity source name for the FusionCache distributed level. | ||
/// </summary> | ||
public const string ActivitySourceNameDistributedLevel = "ZiggyCreatures.Caching.Fusion.Distributed"; | ||
|
||
/// <summary> | ||
/// The activity source name for the FusionCache backplane. | ||
/// </summary> | ||
public const string ActivitySourceNameBackplane = "ZiggyCreatures.Caching.Fusion.Backplane"; | ||
|
||
|
||
/// <summary> | ||
/// The meter name for FusionCache. | ||
/// </summary> | ||
public const string MeterName = "ZiggyCreatures.Caching.Fusion"; | ||
|
||
/// <summary> | ||
/// The meter name for the FusionCache memory level. | ||
/// </summary> | ||
public const string MeterNameMemoryLevel = "ZiggyCreatures.Caching.Fusion.Memory"; | ||
|
||
/// <summary> | ||
/// The meter name for the FusionCache distributed level. | ||
/// </summary> | ||
public const string MeterNameDistributedLevel = "ZiggyCreatures.Caching.Fusion.Distributed"; | ||
|
||
/// <summary> | ||
/// The meter name for the FusionCache backplane. | ||
/// </summary> | ||
public const string MeterNameBackplane = "ZiggyCreatures.Caching.Fusion.Backplane"; | ||
} |
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