Click or drag to resize

ConfigurationRuntimeMetricsReportingStmtGroupMetrics Class

Class to configure statement metrics reporting for a group of one or more statements.
Inheritance Hierarchy
SystemObject
  com.espertech.esper.common.client.configuration.runtimeConfigurationRuntimeMetricsReportingStmtGroupMetrics

Namespace:  com.espertech.esper.common.client.configuration.runtime
Assembly:  NEsper.Common (in NEsper.Common.dll) Version: 8.0.0.0
Syntax
C#
[SerializableAttribute]
public class StmtGroupMetrics

The ConfigurationRuntimeMetricsReportingStmtGroupMetrics type exposes the following members.

Constructors
Properties
  NameDescription
Public propertyInterval
Returns the reporting interval for statement metrics for statements in the statement group.
Public propertyIsDefaultInclude
If this flag is set then all statement names are automatically included in this statement group, and through exclude-pattern certain statement names can be omitted

If this flag is not set then all statement names are automatically excluded in this statement group, and through include-pattern certain statement names can be included.

The default is false, i.e. statements must be explicitly included.

Public propertyIsReportInactive
Returns true to indicate that inactive statements (statements without events or timer activity) are also reported.
Public propertyNumStatements
Returns the initial capacity number of statements held by the statement group.
Public propertyPatterns
Returns a list of patterns that indicate whether a statement, by the statement name matching or not matching each pattern, falls within the statement group.

Include-patterns are boolean true in the pair of pattern and boolean. Exclude-patterns are boolean false.

Top
Methods
  NameDescription
Public methodAddExcludeLike
Exclude all statements from the statement group that match the SQL like-expression by statement name.
Public methodAddExcludeRegEx
Exclude all statements in the statement group that match the regular expression by statement name.
Public methodAddIncludeLike
Include all statements in the statement group that match the SQL like-expression by statement name.
Public methodAddIncludeRegex
Include all statements in the statement group that match the regular expression by statement name.
Top
See Also