abhijeetk88 commented on code in PR #14331:
URL: https://github.com/apache/kafka/pull/14331#discussion_r1315738312


##########
docs/ops.html:
##########
@@ -1545,6 +1545,51 @@ <h4 class="anchor-heading"><a id="remote_jmx" 
class="anchor-link"></a><a href="#
         
<td>kafka.server:type=BrokerTopicMetrics,name=BytesRejectedPerSec,topic=([-.\w]+)</td>
         <td>Rejected byte rate per topic, due to the record batch size being 
greater than max.message.bytes configuration. Omitting 'topic=(...)' will yield 
the all-topic rate.</td>
       </tr>
+      <tr>
+        <td>The number of bytes read from remote storage per second</td>
+        
<td>kafka.server:type=BrokerTopicMetrics,name=RemoteFetchBytesPerSec,topic=([-.\w]+)</td>
+        <td>Rate of bytes read from remote storage per topic. Omitting 
'topic=(...)' will yield the all-topic rate</td>
+      </tr>
+      <tr>
+        <td>The number of remote storage read requests per second.</td>
+        
<td>kafka.server:type=BrokerTopicMetrics,name=RemoteFetchRequestsPerSec,topic=([-.\w]+)</td>
+        <td>Rate of read requests from remote storage per topic. Omitting 
'topic=(...)' will yield the all-topic rate</td>
+      </tr>
+      <tr>
+        <td>The number of remote storage read errors per second.</td>
+        
<td>kafka.server:type=BrokerTopicMetrics,name=RemoteFetchErrorsPerSec,topic=([-.\w]+)</td>
+        <td>Rate of read errors from remote storage per topic. Omitting 
'topic=(...)' will yield the all-topic rate</td>
+      </tr>
+      <tr>
+        <td>The number of bytes copied to remote storage per second.</td>
+        
<td>kafka.server:type=BrokerTopicMetrics,name=RemoteCopyBytesPerSec,topic=([-.\w]+)</td>
+        <td>Rate of bytes copied to remote storage per topic. Omitting 
'topic=(...)' will yield the all-topic rate</td>
+      </tr>
+      <tr>
+        <td>The number of remote storage write requests per second</td>
+        
<td>kafka.server:type=BrokerTopicMetrics,name=RemoteCopyRequestsPerSec,topic=([-.\w]+)</td>
+        <td>Rate of write requests to remote storage per topic. Omitting 
'topic=(...)' will yield the all-topic rate</td>
+      </tr>
+      <tr>
+        <td>The number of remote storage write errors per second.</td>
+        
<td>kafka.server:type=BrokerTopicMetrics,name=RemoteCopyErrorsPerSec,topic=([-.\w]+)</td>
+        <td>Rate of write errors from remote storage per topic. Omitting 
'topic=(...)' will yield the all-topic rate</td>
+      </tr>
+      <tr>
+        <td>Number of remote storage read tasks pending for execution</td>
+        
<td>kafka.log.remote:type=RemoteLogManager,name=RemoteLogReaderTaskQueueSize</td>

Review Comment:
   ```
   java -jar cmdline-jmxclient-0.10.3.jar - localhost:1099 | grep server | grep 
 'Remote' | grep PerSec
   kafka.server:name=RemoteCopyBytesPerSec,type=BrokerTopicMetrics
   kafka.server:name=RemoteFetchRequestsPerSec,type=BrokerTopicMetrics
   kafka.server:name=RemoteCopyRequestsPerSec,type=BrokerTopicMetrics
   kafka.server:name=RemoteFetchErrorsPerSec,type=BrokerTopicMetrics
   kafka.server:name=RemoteCopyErrorsPerSec,type=BrokerTopicMetrics
   kafka.server:name=RemoteFetchBytesPerSec,type=BrokerTopicMetrics
   
   java -jar cmdline-jmxclient-0.10.3.jar - localhost:1099 | grep -i 
'ThreadPool'
   
org.apache.kafka.storage.internals.log:name=RemoteLogReaderAvgIdlePercent,type=RemoteStorageThreadPool
   
org.apache.kafka.storage.internals.log:name=RemoteLogReaderTaskQueueSize,type=RemoteStorageThreadPool
   
   java -jar cmdline-jmxclient-0.10.3.jar - localhost:1099 | grep -i 
'kafka.log.remote'
   
kafka.log.remote:name=RemoteLogManagerTasksAvgIdlePercent,type=RemoteLogManager
   ```
   
   



-- 
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]

Reply via email to