MiniSho commented on code in PR #11302:
URL: https://github.com/apache/iotdb/pull/11302#discussion_r1360495336
##########
iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/service/metric/enums/Metric.java:
##########
@@ -93,7 +93,32 @@ public enum Metric {
LOCAL_EXECUTION_PLANNER("local_execution_planner"),
// file related
FILE_SIZE("file_size"),
- FILE_COUNT("file_count");
+ FILE_COUNT("file_count"),
+ // pipe related
+ UNASSIGNED_TABLET_COUNT("unassigned_tablet_count"),
+ UNASSIGNED_TS_FILE_COUNT("unassigned_ts_file_count"),
+ UNASSIGNED_HEARTBEAT_COUNT("unassigned_heartbeat_count"),
+ UNPROCESSED_TABLET_COUNT("unprocessed_tablet_count"),
+ UNPROCESSED_HISTORICAL_TS_FILE_COUNT("unprocessed_historical_ts_file_count"),
+ UNPROCESSED_REALTIME_TS_FILE_COUNT("unprocessed_realtime_ts_file_count"),
+ UNPROCESSED_HEARTBEAT_COUNT("unprocessed_heartbeat_count"),
+ BUFFERED_TABLET_COUNT("buffered_tablet_count"),
+ BUFFERED_TS_FILE_COUNT("buffered_ts_file_count"),
Review Comment:
tsfile is a single word, so it will be better to be
`BUFFERD_TSFILE_COUNT("buffered_tsfile_count")` :)
##########
iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/service/metric/enums/Metric.java:
##########
@@ -93,7 +93,32 @@ public enum Metric {
LOCAL_EXECUTION_PLANNER("local_execution_planner"),
// file related
FILE_SIZE("file_size"),
- FILE_COUNT("file_count");
+ FILE_COUNT("file_count"),
+ // pipe related
+ UNASSIGNED_TABLET_COUNT("unassigned_tablet_count"),
+ UNASSIGNED_TS_FILE_COUNT("unassigned_ts_file_count"),
+ UNASSIGNED_HEARTBEAT_COUNT("unassigned_heartbeat_count"),
+ UNPROCESSED_TABLET_COUNT("unprocessed_tablet_count"),
+ UNPROCESSED_HISTORICAL_TS_FILE_COUNT("unprocessed_historical_ts_file_count"),
+ UNPROCESSED_REALTIME_TS_FILE_COUNT("unprocessed_realtime_ts_file_count"),
+ UNPROCESSED_HEARTBEAT_COUNT("unprocessed_heartbeat_count"),
+ BUFFERED_TABLET_COUNT("buffered_tablet_count"),
+ BUFFERED_TS_FILE_COUNT("buffered_ts_file_count"),
+ BUFFERED_HEARTBEAT_COUNT("buffered_heartbeat_count"),
+ UNTRANSFERRED_TABLET_COUNT("untransferred_tablet_count"),
+ UNTRANSFERRED_TS_FILE_COUNT("untransferred_ts_file_count"),
Review Comment:
as above
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]