Interface IMetricsObserverOptions
Namespace: Steeltoe.Management.Endpoint.Metrics
Assembly: Steeltoe.Management.EndpointBase.dll
Syntax
public interface IMetricsObserverOptions
Properties
| Edit this page View SourceEgressIgnorePattern
Gets a regex pattern for requests leaving this application where metrics should not be captured
Declaration
string EgressIgnorePattern { get; }
Property Value
Type | Description |
---|---|
System.String |
ExcludedMetrics
Gets a list of metrics that should not be captured
Declaration
List<string> ExcludedMetrics { get; }
Property Value
Type | Description |
---|---|
List<System.String> |
Remarks
Currently only applies to System.Runtime metrics captured by EventCounterListener
See this list for values to choose from: https://docs.microsoft.com/dotnet/core/diagnostics/available-counters#systemruntime-counters
IncludedMetrics
Gets Allow list of metrics that should be captured
Declaration
List<string> IncludedMetrics { get; }
Property Value
Type | Description |
---|---|
List<System.String> |
Remarks
Currently only applies to System.Runtime metrics captured by EventCounterListener
See this list for values to choose from: https://docs.microsoft.com/dotnet/core/diagnostics/available-counters#systemruntime-counters
IngressIgnorePattern
Gets a regex pattern for requests coming into this application where metrics should not be captured
Declaration
string IngressIgnorePattern { get; }
Property Value
Type | Description |
---|---|
System.String |