From 310c99dc60971a247f72fcaa6fe091dd89732bd3 Mon Sep 17 00:00:00 2001 From: ryjiang Date: Mon, 8 Nov 2021 13:05:44 +0800 Subject: [PATCH] [skip ci]Add comments in chap09_data_coord.md (#11397) Signed-off-by: ruiyi.jiang --- docs/developer_guides/chap09_data_coord.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/developer_guides/chap09_data_coord.md b/docs/developer_guides/chap09_data_coord.md index 1af3616652..1e929fbacf 100644 --- a/docs/developer_guides/chap09_data_coord.md +++ b/docs/developer_guides/chap09_data_coord.md @@ -32,7 +32,7 @@ type DataCoord interface { SaveBinlogPaths(ctx context.Context, req *datapb.SaveBinlogPathsRequest) (*commonpb.Status, error) // GetFlushedSegments returns flushed segment list of requested collection/parition GetFlushedSegments(ctx context.Context, req *datapb.GetFlushedSegmentsRequest) (*datapb.GetFlushedSegmentsResponse, error) - + // GetMetrics gets the metrics about DataCoord GetMetrics(ctx context.Context, req *milvuspb.GetMetricsRequest) (*milvuspb.GetMetricsResponse, error) } ```