Browse Source

add offset

pull/5637/head
chrislu 12 months ago
parent
commit
1fed37bed0
  1. 10
      weed/pb/mq.proto
  2. 647
      weed/pb/mq_pb/mq.pb.go

10
weed/pb/mq.proto

@ -68,6 +68,16 @@ message Partition {
int64 unix_time_ns = 4;
}
message Offset {
Topic topic = 1;
repeated PartitionOffset partition_offsets = 2;
}
message PartitionOffset {
Partition partition = 1;
int64 ts_ns = 2;
}
//////////////////////////////////////////////////
message BrokerStats {
int32 cpu_usage_percent = 1;

647
weed/pb/mq_pb/mq.pb.go
File diff suppressed because it is too large
View File

Loading…
Cancel
Save