diff --git a/sqle/locale/active.en.toml b/sqle/locale/active.en.toml index ca87dc8e3..16de25805 100644 --- a/sqle/locale/active.en.toml +++ b/sqle/locale/active.en.toml @@ -87,6 +87,7 @@ ApMetricNameQueryTimeMax = "Max execution time(s)" ApMetricNameQueryTimeMaxMS = "Max execution time(ms)" ApMetricNameQueryTimeTotal = "Total execution time(s)" ApMetricNameQueryTimeTotalMS = "Total execution time(ms)" +ApMetricNameQueryTimeTotalUS = "Total execution time(μs)" ApMetricNameRowExaminedAvg = "Average examined rows" ApMetricNameRowExaminedAvgMoreThan = "Average examined rows > " ApMetricNameRequestTime = "Request Time" diff --git a/sqle/locale/active.zh.toml b/sqle/locale/active.zh.toml index c19c16f70..00d16160d 100644 --- a/sqle/locale/active.zh.toml +++ b/sqle/locale/active.zh.toml @@ -86,6 +86,7 @@ ApMetricNameQueryTimeAvgMoreThan = "平均执行时间(s) > " ApMetricNameQueryTimeMax = "最长执行时间(s)" ApMetricNameQueryTimeMaxMS = "最长执行时间(ms)" ApMetricNameQueryTimeTotal = "总执行时间(s)" +ApMetricNameQueryTimeTotalUS = "总执行时间(μs)" ApMetricNameQueryTimeTotalMS = "总执行时间(ms)" ApMetricNameRowExaminedAvg = "平均扫描行数" ApMetricNameRowExaminedAvgMoreThan = "平均扫描行数 > " diff --git a/sqle/locale/message_zh.go b/sqle/locale/message_zh.go index 9c2ca6f4b..09d7074f7 100644 --- a/sqle/locale/message_zh.go +++ b/sqle/locale/message_zh.go @@ -329,6 +329,7 @@ var ( ApMetricNameQueryTimeTotal = &i18n.Message{ID: "ApMetricNameQueryTimeTotal", Other: "总执行时间(s)"} ApMetricNameQueryTimeAvg = &i18n.Message{ID: "ApMetricNameQueryTimeAvg", Other: "平均执行时间(s)"} ApMetricNameQueryTimeTotalMS = &i18n.Message{ID: "ApMetricNameQueryTimeTotalMS", Other: "总执行时间(ms)"} + ApMetricNameQueryTimeTotalUS = &i18n.Message{ID: "ApMetricNameQueryTimeTotalUS", Other: "总执行时间(μs)"} ApMetricNameQueryTimeAvgMS = &i18n.Message{ID: "ApMetricNameQueryTimeAvgMS", Other: "平均执行时间(ms)"} ApMetricNameCounter = &i18n.Message{ID: "ApMetricNameCounter", Other: "执行次数"} ApMetricNameCPUTimeAvg = &i18n.Message{ID: "ApMetricNameCPUTimeAvg", Other: "平均 CPU 时间(μs)"}