Class MetricsObserverOptions
Inheritance
System.Object
MetricsObserverOptions
Assembly: Steeltoe.Management.EndpointBase.dll
Syntax
public class MetricsObserverOptions : object, IMetricsObserverOptions
Constructors
|
Edit this page
View Source
MetricsObserverOptions()
Declaration
public MetricsObserverOptions()
|
Edit this page
View Source
MetricsObserverOptions(IConfiguration)
Declaration
public MetricsObserverOptions(IConfiguration config)
Parameters
Type |
Name |
Description |
IConfiguration |
config |
|
Properties
|
Edit this page
View Source
AspNetCoreHosting
Declaration
public bool AspNetCoreHosting { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
|
Edit this page
View Source
EgressIgnorePattern
Gets a regex pattern for requests leaving this application where metrics should not be captured
Declaration
public string EgressIgnorePattern { get; set; }
Property Value
Type |
Description |
System.String |
|
|
Edit this page
View Source
EventCounterEvents
Declaration
public bool EventCounterEvents { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
|
Edit this page
View Source
ExcludedMetrics
Gets a list of metrics that should not be captured
Declaration
public List<string> ExcludedMetrics { get; set; }
Property Value
Type |
Description |
List<System.String> |
|
|
Edit this page
View Source
GCEvents
Declaration
public bool GCEvents { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
|
Edit this page
View Source
HttpClientCore
Declaration
public bool HttpClientCore { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
|
Edit this page
View Source
HttpClientDesktop
Declaration
public bool HttpClientDesktop { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
|
Edit this page
View Source
HystrixEvents
Declaration
public bool HystrixEvents { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
|
Edit this page
View Source
IncludedMetrics
Gets Allow list of metrics that should be captured
Declaration
public List<string> IncludedMetrics { get; set; }
Property Value
Type |
Description |
List<System.String> |
|
|
Edit this page
View Source
IngressIgnorePattern
Gets a regex pattern for requests coming into this application where metrics should not be captured
Declaration
public string IngressIgnorePattern { get; set; }
Property Value
Type |
Description |
System.String |
|
|
Edit this page
View Source
ThreadPoolEvents
Declaration
public bool ThreadPoolEvents { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
Implements