Package io.camunda.zeebe.logstreams.impl
Enum Class LogStreamMetricsDoc
- All Implemented Interfaces:
ExtendedMeterDocumentation,io.micrometer.core.instrument.docs.MeterDocumentation,Serializable,Comparable<LogStreamMetricsDoc>,Constable
public enum LogStreamMetricsDoc
extends Enum<LogStreamMetricsDoc>
implements ExtendedMeterDocumentation
Flow control metrics for the log storage appender.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enumstatic enumPossible tags for theFLOW_CONTROL_OUTCOMEmetricstatic enumstatic enumTags/labels associated with theRECORD_APPENDEDmetric.Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionLatency to commit an event to the log in secondsCurrent limit for number of inflight appendsThe rate of exporting records from the log appenderThe count of records passing through the flow control, organized by context and outcomeCurrent number of append inflightCurrent number of request inflightThe last committed positionThe last appended position by the appenderThe current load of the partition.Count of records appended per partition, record type, value type, and intentCurrent limit for number of inflight requestsNumber of tries to appendNumber of deferred appends due to backpressureNumber of requests dropped due to backpressureNumber of requests receivedLatency to append an event to the log in secondsThe current write rate limitThe maximum write rate limit -
Field Summary
Fields inherited from interface io.camunda.zeebe.util.micrometer.ExtendedMeterDocumentation
EMPTY_DISTRIBUTION_SLOSFields inherited from interface io.micrometer.core.instrument.docs.MeterDocumentation
EMPTY -
Method Summary
Modifier and TypeMethodDescriptionstatic LogStreamMetricsDocReturns the enum constant of this class with the specified name.static LogStreamMetricsDoc[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfMethods inherited from interface io.camunda.zeebe.util.micrometer.ExtendedMeterDocumentation
getDescription, getDistributionSLOs, getTimerSLOsMethods inherited from interface io.micrometer.core.instrument.docs.MeterDocumentation
getAdditionalKeyNames, getBaseUnit, getKeyNames, getName, getName, getPrefix, getType, overridesDefaultMetricFrom
-
Enum Constant Details
-
FLOW_CONTROL_OUTCOME
The count of records passing through the flow control, organized by context and outcome -
TOTAL_DEFERRED_APPEND_COUNT
Number of deferred appends due to backpressure -
TOTAL_APPEND_TRY_COUNT
Number of tries to append -
INFLIGHT_APPENDS
Current number of append inflight -
TOTAL_RECEIVED_REQUESTS
Number of requests received -
TOTAL_DROPPED_REQUESTS
Number of requests dropped due to backpressure -
INFLIGHT_REQUESTS
Current number of request inflight -
REQUEST_LIMIT
Current limit for number of inflight requests -
CURRENT_LIMIT
Current limit for number of inflight appends -
LAST_COMMITTED_POSITION
The last committed position -
LAST_WRITTEN_POSITION
The last appended position by the appender -
WRITE_LATENCY
Latency to append an event to the log in seconds -
COMMIT_LATENCY
Latency to commit an event to the log in seconds -
RECORD_APPENDED
Count of records appended per partition, record type, value type, and intent -
PARTITION_LOAD
The current load of the partition. Determined by observed write rate compared to the write rate limit. -
WRITE_RATE_LIMIT
The current write rate limit -
WRITE_RATE_MAX_LIMIT
The maximum write rate limit -
EXPORTING_RATE
The rate of exporting records from the log appender
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-