mirror of https://github.com/apache/kafka.git
MINOR: Add docs for ReplicationBytesInPerSec and ReplicationBytesOutPerSec (#4595)
Add docs for the ReplicationBytesInPerSec and ReplicationBytesOutPerSec metrics. These metrics were introduced in KIP-153 (KAFKA-5194) but the docs were not updated. Built site-docs, and viewed them in a web browser to confirm. Reviewers: Mickael Maison <mickael.maison@gmail.com>, Ismael Juma <ismael@juma.me.uk>
This commit is contained in:
parent
f3c4240e6c
commit
75df8cc77a
|
@ -764,10 +764,15 @@
|
||||||
<td></td>
|
<td></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Byte in rate</td>
|
<td>Byte in rate from clients</td>
|
||||||
<td>kafka.server:type=BrokerTopicMetrics,name=BytesInPerSec</td>
|
<td>kafka.server:type=BrokerTopicMetrics,name=BytesInPerSec</td>
|
||||||
<td></td>
|
<td></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Byte in rate from other brokers</td>
|
||||||
|
<td>kafka.server:type=BrokerTopicMetrics,name=ReplicationBytesInPerSec</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Request rate</td>
|
<td>Request rate</td>
|
||||||
<td>kafka.network:type=RequestMetrics,name=RequestsPerSec,request={Produce|FetchConsumer|FetchFollower}</td>
|
<td>kafka.network:type=RequestMetrics,name=RequestsPerSec,request={Produce|FetchConsumer|FetchFollower}</td>
|
||||||
|
@ -800,10 +805,15 @@
|
||||||
<td>Number of records which required message format conversion.</td>
|
<td>Number of records which required message format conversion.</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Byte out rate</td>
|
<td>Byte out rate to clients</td>
|
||||||
<td>kafka.server:type=BrokerTopicMetrics,name=BytesOutPerSec</td>
|
<td>kafka.server:type=BrokerTopicMetrics,name=BytesOutPerSec</td>
|
||||||
<td></td>
|
<td></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Byte out rate to other brokers</td>
|
||||||
|
<td>kafka.server:type=BrokerTopicMetrics,name=ReplicationBytesOutPerSec</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Log flush rate and time</td>
|
<td>Log flush rate and time</td>
|
||||||
<td>kafka.log:type=LogFlushStats,name=LogFlushRateAndTimeMs</td>
|
<td>kafka.log:type=LogFlushStats,name=LogFlushRateAndTimeMs</td>
|
||||||
|
|
Loading…
Reference in New Issue