DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
| Name | Recording Level | Metric Type | Description |
|---|---|---|---|
| client-state | INFO | Gauge | The current state of the Kafka Streams instance |
| thread-state | INFO | Gauge | The current state of the StreamThread |
| recording-level | INFO | Gauge | The level of metrics recording |
Values for client-state metrics
The client-state metric values will reflect the current state of the Kafka Streams client instance represented by the KafkaStreams.State enum
| Client State | Metric Value |
|---|---|
| CREATED | 0 |
| REBALANCING | 1 |
| RUNNING | 2 |
| PENDING_SHUTDOWN | 3 |
| NOT_RUNNING | 4 |
| PENDING_ERROR | 5 |
| ERROR | 6 |
Proposed Changes
These new metrics will be available at the INFO level. Both the client-state and thread-state will be updated to reflect the changes in the client or thread state. The recording-level is determined on startup and contains the configured metrics recording level.
...