Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: querier add timeout_ratio #8973

Merged
merged 1 commit into from
Jan 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ timeout , timeout , counter , Error ,
error_ratio , , percentage , Error , 111
client_error_ratio , , percentage , Error , 111
server_error_ratio , , percentage , Error , 111
timeout_ratio , , percentage , Error , 111
row , , other , Other , 111
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ timeout , 超时 , 个 , 应用超时的
error_ratio , 异常比例 , % , `异常 / 响应`
client_error_ratio , 客户端异常比例 , % , `客户端异常 / 响应`
server_error_ratio , 服务端异常比例 , % , `服务端异常 / 响应`
timeout_ratio , 超时比例 , % , `超时 / 请求`
row , 行数 , 个 ,
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ timeout , Timeout , ,
error_ratio , Error % , % ,
client_error_ratio , Client Error % , % ,
server_error_ratio , Server Error % , % ,
timeout_ratio , Timeout % , % ,
row , Row Count , ,
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ timeout , timeout , counter , Error ,
error_ratio , , percentage , Error , 111
client_error_ratio , , percentage , Error , 111
server_error_ratio , , percentage , Error , 111
timeout_ratio , , percentage , Error , 111
row , , other , Other , 111
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ timeout , 超时 , 个 , 应用超时的
error_ratio , 异常比例 , % , `异常 / 响应`
client_error_ratio , 客户端异常比例 , % , `客户端异常 / 响应`
server_error_ratio , 服务端异常比例 , % , `服务端异常 / 响应`
timeout_ratio , 超时比例 , % , `超时 / 请求`
row , 行数 , 个 ,
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ timeout , Timeout , ,
error_ratio , Error % , % ,
client_error_ratio , Client Error % , % ,
server_error_ratio , Server Error % , % ,
timeout_ratio , Timeout % , % ,
row , Row Count , ,
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ var VTAP_APP_EDGE_PORT_METRICS_REPLACE = map[string]*Metrics{
"error_ratio": NewReplaceMetrics("error/response", ""),
"client_error_ratio": NewReplaceMetrics("client_error/response", ""),
"server_error_ratio": NewReplaceMetrics("server_error/response", ""),
"timeout_ratio": NewReplaceMetrics("timeout/request", ""),
}

func GetVtapAppEdgePortMetrics() map[string]*Metrics {
Expand Down
1 change: 1 addition & 0 deletions server/querier/engine/clickhouse/metrics/vtap_app_port.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ var VTAP_APP_PORT_METRICS_REPLACE = map[string]*Metrics{
"error_ratio": NewReplaceMetrics("error/response", ""),
"client_error_ratio": NewReplaceMetrics("client_error/response", ""),
"server_error_ratio": NewReplaceMetrics("server_error/response", ""),
"timeout_ratio": NewReplaceMetrics("timeout/request", ""),
}

func GetVtapAppPortMetrics() map[string]*Metrics {
Expand Down
Loading