Skip to content

Commit

Permalink
feat: querier support language parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaochaoren1 committed Nov 18, 2024
1 parent f7042d9 commit 1562a74
Show file tree
Hide file tree
Showing 8 changed files with 236 additions and 134 deletions.
1 change: 1 addition & 0 deletions server/querier/common/const.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ const (
)

const (
HEADER_KEY_LANGUAGE = "X-Language"
HEADER_KEY_X_ORG_ID = "X-Org-Id"
DEFAULT_ORG_ID = "1"
)
Expand Down
1 change: 1 addition & 0 deletions server/querier/common/parameters.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ type QuerierParams struct {
NoPreWhere bool
ORGID string
SimpleSql bool
Language string
}

type TempoParams struct {
Expand Down
76 changes: 62 additions & 14 deletions server/querier/engine/clickhouse/clickhouse.go
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,10 @@ func ShowTagTypeMetrics(tagDescriptions, result *common.Result, db, table string
clientName := tagSlice[1].(string)
serverName := tagSlice[2].(string)
displayName := tagSlice[3].(string)
tagType := tagSlice[4].(string)
permissions := tagSlice[7].([]bool)
displayNameZH := tagSlice[4].(string)
displayNameEN := tagSlice[5].(string)
tagType := tagSlice[6].(string)
permissions := tagSlice[9].([]bool)
if slices.Contains([]string{"auto_custom_tag", "time", "id"}, tagType) {
continue
}
Expand All @@ -270,8 +272,8 @@ func ShowTagTypeMetrics(tagDescriptions, result *common.Result, db, table string
if name == "lb_listener" || name == "pod_ingress" {
continue
}
if len(tagSlice) >= 12 {
notSupportedOperators := tagSlice[11].([]string)
if len(tagSlice) >= 16 {
notSupportedOperators := tagSlice[15].([]string)
// not support select
if slices.Contains(notSupportedOperators, "select") {
continue
Expand All @@ -280,14 +282,18 @@ func ShowTagTypeMetrics(tagDescriptions, result *common.Result, db, table string
if slices.Contains([]string{"l4_flow_log", "l7_flow_log", "application_map", "network_map", "vtap_flow_edge_port", "vtap_app_edge_port"}, table) {
if serverName == clientName {
clientNameMetric := []interface{}{
clientName, true, displayName, "", metrics.METRICS_TYPE_NAME_MAP["tag"],
"Tag", metrics.METRICS_OPERATORS, permissions, table, "",
clientName, true, displayName, displayNameZH, displayNameEN, "", "", "", metrics.METRICS_TYPE_NAME_MAP["tag"],
"Tag", metrics.METRICS_OPERATORS, permissions, table, "", "", "",
}
result.Values = append(result.Values, clientNameMetric)
} else {
var (
serverDisplayName = displayName
clientDisplayName = displayName
serverDisplayName = displayName
clientDisplayName = displayName
serverDisplayNameZH = chCommon.TagServerChPrefix + " " + displayName
serverDisplayNameEN = chCommon.TagServerEnPrefix + " " + displayName
clientDisplayNameZH = chCommon.TagClientChPrefix + " " + displayName
clientDisplayNameEN = chCommon.TagClientEnPrefix + " " + displayName
)
if config.Cfg.Language == "en" {
serverDisplayName = chCommon.TagServerEnPrefix + " " + displayName
Expand All @@ -302,19 +308,19 @@ func ShowTagTypeMetrics(tagDescriptions, result *common.Result, db, table string
}
}
serverNameMetric := []interface{}{
serverName, true, serverDisplayName, "", metrics.METRICS_TYPE_NAME_MAP["tag"],
"Tag", metrics.METRICS_OPERATORS, permissions, table, "",
serverName, true, serverDisplayName, serverDisplayNameZH, serverDisplayNameEN, "", "", "", metrics.METRICS_TYPE_NAME_MAP["tag"],
"Tag", metrics.METRICS_OPERATORS, permissions, table, "", "", "",
}
clientNameMetric := []interface{}{
clientName, true, clientDisplayName, "", metrics.METRICS_TYPE_NAME_MAP["tag"],
"Tag", metrics.METRICS_OPERATORS, permissions, table, "",
clientName, true, clientDisplayName, clientDisplayNameZH, clientDisplayNameEN, "", "", "", metrics.METRICS_TYPE_NAME_MAP["tag"],
"Tag", metrics.METRICS_OPERATORS, permissions, table, "", "", "",
}
result.Values = append(result.Values, serverNameMetric, clientNameMetric)
}
} else {
nameMetric := []interface{}{
name, true, displayName, "", metrics.METRICS_TYPE_NAME_MAP["tag"],
"Tag", metrics.METRICS_OPERATORS, permissions, table, "",
name, true, displayName, displayName, displayName, "", "", "", metrics.METRICS_TYPE_NAME_MAP["tag"],
"Tag", metrics.METRICS_OPERATORS, permissions, table, "", "", "",
}
result.Values = append(result.Values, nameMetric)
}
Expand Down Expand Up @@ -360,6 +366,42 @@ func dataVisibilityfiltering(visibilityFilterRegexp *regexp.Regexp, values []int
return visibilityFilterValues
}

func formatTagByLanguage(language string, values []interface{}) {
for _, value := range values {
displaynameZH := value.([]interface{})[4].(string)
displaynameEN := value.([]interface{})[5].(string)
descriptionZH := value.([]interface{})[11].(string)
descriptionEN := value.([]interface{})[12].(string)
if language == chCommon.LanguageEN {
value.([]interface{})[3] = displaynameEN
value.([]interface{})[10] = descriptionEN
} else {
value.([]interface{})[3] = displaynameZH
value.([]interface{})[10] = descriptionZH
}
}
}

func formatMetricByLanguage(language string, values []interface{}) {
for _, value := range values {
displaynameZH := value.([]interface{})[3].(string)
displaynameEN := value.([]interface{})[4].(string)
unitZH := value.([]interface{})[6].(string)
unitEN := value.([]interface{})[7].(string)
descriptionZH := value.([]interface{})[14].(string)
descriptionEN := value.([]interface{})[15].(string)
if language == chCommon.LanguageEN {
value.([]interface{})[2] = displaynameEN
value.([]interface{})[5] = unitEN
value.([]interface{})[13] = descriptionEN
} else {
value.([]interface{})[2] = displaynameZH
value.([]interface{})[5] = unitZH
value.([]interface{})[13] = descriptionZH
}
}
}

func (e *CHEngine) ParseShowSql(sql string, args *common.QuerierParams, DebugInfo *client.DebugInfo) (*common.Result, []string, bool, error) {
var visibilityFilterRegexp *regexp.Regexp
sqlSplit := strings.Fields(sql)
Expand Down Expand Up @@ -428,6 +470,9 @@ func (e *CHEngine) ParseShowSql(sql string, args *common.QuerierParams, DebugInf
if len(visibilityFilter) > 0 && e.DB != chCommon.DB_NAME_DEEPFLOW_TENANT {
result.Values = dataVisibilityfiltering(visibilityFilterRegexp, result.Values)
}
if args.Language != "" {
formatMetricByLanguage(args.Language, result.Values)
}
return result, []string{}, true, err
case 4: // show tag X values from Y X, Y not nil
result, sqlList, err := tagdescription.GetTagValues(e.DB, table, sql, args.QueryCacheTTL, args.ORGID, args.UseQueryCache)
Expand All @@ -441,6 +486,9 @@ func (e *CHEngine) ParseShowSql(sql string, args *common.QuerierParams, DebugInf
if len(visibilityFilter) > 0 && e.DB != chCommon.DB_NAME_DEEPFLOW_TENANT {
data.Values = dataVisibilityfiltering(visibilityFilterRegexp, data.Values)
}
if args.Language != "" {
formatTagByLanguage(args.Language, data.Values)
}
return data, []string{}, true, err
case 6: // show tables...
if e.DB == chCommon.DB_NAME_DEEPFLOW_TENANT && len(visibilityFilter) > 0 {
Expand Down
1 change: 1 addition & 0 deletions server/querier/engine/clickhouse/common/const.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ const TagServerChPrefix = "服务端"
const TagClientChPrefix = "客户端"
const TagServerEnPrefix = "Server"
const TagClientEnPrefix = "Client"
const LanguageEN = "en"

var DB_TABLE_MAP = map[string][]string{
DB_NAME_FLOW_LOG: []string{"l4_flow_log", "l7_flow_log", "l4_packet", "l7_packet"},
Expand Down
4 changes: 2 additions & 2 deletions server/querier/engine/clickhouse/metrics/ext_common.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ func GetExtMetrics(db, table, where, queryCacheTTL, orgID string, useQueryCache
dbField := fmt.Sprintf("if(indexOf(%s, '%s')=0, null, %s[indexOf(%s, '%s')])", metrics_names_field, externalTag, metrics_values_field, metrics_names_field, externalTag)
metricName := fmt.Sprintf("metrics.%s", externalTag)
lm := NewMetrics(
i, dbField, metricName, "", METRICS_TYPE_COUNTER,
"metrics", []bool{true, true, true}, "", tableName, "", "",
i, dbField, metricName, metricName, metricName, "", "", "", METRICS_TYPE_COUNTER,
"metrics", []bool{true, true, true}, "", tableName, "", "", "", "",
)
loadMetrics[fmt.Sprintf("%s-%s", metricName, tableName)] = lm
}
Expand Down
Loading

0 comments on commit 1562a74

Please sign in to comment.