|
@@ -12,6 +12,7 @@ import {
|
|
getOutOfSyncReplicasCount,
|
|
getOutOfSyncReplicasCount,
|
|
getUnderReplicatedPartitionCount,
|
|
getUnderReplicatedPartitionCount,
|
|
getDiskUsage,
|
|
getDiskUsage,
|
|
|
|
+ getVersion,
|
|
} from 'redux/reducers/brokers/selectors';
|
|
} from 'redux/reducers/brokers/selectors';
|
|
import Brokers from 'components/Brokers/Brokers';
|
|
import Brokers from 'components/Brokers/Brokers';
|
|
|
|
|
|
@@ -26,6 +27,7 @@ const mapStateToProps = (state: RootState) => ({
|
|
outOfSyncReplicasCount: getOutOfSyncReplicasCount(state),
|
|
outOfSyncReplicasCount: getOutOfSyncReplicasCount(state),
|
|
underReplicatedPartitionCount: getUnderReplicatedPartitionCount(state),
|
|
underReplicatedPartitionCount: getUnderReplicatedPartitionCount(state),
|
|
diskUsage: getDiskUsage(state),
|
|
diskUsage: getDiskUsage(state),
|
|
|
|
+ version: getVersion(state),
|
|
});
|
|
});
|
|
|
|
|
|
const mapDispatchToProps = {
|
|
const mapDispatchToProps = {
|