chiradip opened a new issue, #2209:
URL: https://github.com/apache/iggy/issues/2209
**Title:** `[Java SDK] Implement metrics collection and monitoring`
**Description:**
No built-in metrics collection, making production monitoring difficult.
**Proposed Solution:**
```java
// Metrics API
IggyMetrics metrics = client.metrics();
metrics.getMessagesProduced();
metrics.getMessagesConsumed();
metrics.getConsumerLag();
// JMX integration
client.enableJmxMetrics("org.apache.iggy");
// Micrometer support
client.bindTo(meterRegistry);
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]