parent
b296108e5b
commit
326786e4ff
3 changed files with 6 additions and 1 deletions
|
@ -135,6 +135,7 @@ const List: React.FC<Props> = ({
|
||||||
orderBy={orderBy}
|
orderBy={orderBy}
|
||||||
setOrderBy={setTopicsOrderBy}
|
setOrderBy={setTopicsOrderBy}
|
||||||
/>
|
/>
|
||||||
|
<th>Replication Factor</th>
|
||||||
<th>Number of messages</th>
|
<th>Number of messages</th>
|
||||||
<th>Size</th>
|
<th>Size</th>
|
||||||
<th>Type</th>
|
<th>Type</th>
|
||||||
|
|
|
@ -20,7 +20,7 @@ export interface ListItemProps {
|
||||||
}
|
}
|
||||||
|
|
||||||
const ListItem: React.FC<ListItemProps> = ({
|
const ListItem: React.FC<ListItemProps> = ({
|
||||||
topic: { name, internal, partitions, segmentSize },
|
topic: { name, internal, partitions, segmentSize, replicationFactor },
|
||||||
deleteTopic,
|
deleteTopic,
|
||||||
clusterName,
|
clusterName,
|
||||||
clearTopicMessages,
|
clearTopicMessages,
|
||||||
|
@ -75,6 +75,7 @@ const ListItem: React.FC<ListItemProps> = ({
|
||||||
</td>
|
</td>
|
||||||
<td>{partitions?.length}</td>
|
<td>{partitions?.length}</td>
|
||||||
<td>{outOfSyncReplicas}</td>
|
<td>{outOfSyncReplicas}</td>
|
||||||
|
<td>{replicationFactor}</td>
|
||||||
<td>{numberOfMessages}</td>
|
<td>{numberOfMessages}</td>
|
||||||
<td>
|
<td>
|
||||||
<BytesFormatted value={segmentSize} />
|
<BytesFormatted value={segmentSize} />
|
||||||
|
|
|
@ -205,6 +205,9 @@ exports[`List when it does not have readonly flag matches the snapshot 1`] = `
|
||||||
</span>
|
</span>
|
||||||
</th>
|
</th>
|
||||||
</ListHeaderCell>
|
</ListHeaderCell>
|
||||||
|
<th>
|
||||||
|
Replication Factor
|
||||||
|
</th>
|
||||||
<th>
|
<th>
|
||||||
Number of messages
|
Number of messages
|
||||||
</th>
|
</th>
|
||||||
|
|
Loading…
Add table
Reference in a new issue