查看topic分区消息偏移

This commit is contained in:
许晓东
2021-09-24 16:43:30 +08:00
parent e65eba9237
commit fd955d215c
5 changed files with 91 additions and 3 deletions

View File

@@ -114,6 +114,21 @@ const columns = [
key: "isr",
scopedSlots: { customRender: "isr" },
},
{
title: "最小位点",
dataIndex: "beginOffset",
key: "beginOffset",
},
{
title: "最大位点",
dataIndex: "endOffset",
key: "endOffset",
},
{
title: "消息总数",
dataIndex: "diff",
key: "diff",
},
];
</script>