Skip to content

Commit

Permalink
feat:dubbo3 support (#267)
Browse files Browse the repository at this point in the history
  • Loading branch information
chuntaojun committed Jan 30, 2024
1 parent e49a508 commit 49739c3
Show file tree
Hide file tree
Showing 5 changed files with 131 additions and 115 deletions.
18 changes: 9 additions & 9 deletions handlers/metrics.go
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ func handleDescribeServicesMetric(discoverResp *model.BatchQueryResponse, timeou
func describeServiceMetricsRequestTotal(conf *bootstrap.Config, namespace, start, end, step string) (map[string]map[string]*model.ServiceMetric, error) {
stepVal, _ := strconv.ParseInt(step, 10, 64)
if stepVal < 60 {
step = "60"
step = "10"
}
params := map[string]string{
"start": start,
Expand Down Expand Up @@ -329,7 +329,7 @@ func describeServiceMetricsRequestTotal(conf *bootstrap.Config, namespace, start
func describeServiceMetricsRequestTimeout(conf *bootstrap.Config, namespace, start, end, step string) (map[string]map[string]float64, error) {
stepVal, _ := strconv.ParseInt(step, 10, 64)
if stepVal < 60 {
step = "60"
step = "10"
}
params := map[string]string{
"start": start,
Expand Down Expand Up @@ -490,7 +490,7 @@ func handleDescribeServiceInterfacesMetric(timeoutResp map[string]float64,
func describeServiceInterfaceList(conf *bootstrap.Config, start, end, step string) (map[string]struct{}, error) {
stepVal, _ := strconv.ParseInt(step, 10, 64)
if stepVal < 60 {
step = "60"
step = "10"
}
params := map[string]string{
"query": "group(upstream_rq_total) by (callee_method)",
Expand Down Expand Up @@ -524,7 +524,7 @@ func describeServiceInterfaceList(conf *bootstrap.Config, start, end, step strin
func describeServiceInterfaceMetricsRequestTotal(conf *bootstrap.Config, namespace, service, calleeInstance, start, end, step string) (map[string]*model.InterfaceMetric, error) {
stepVal, _ := strconv.ParseInt(step, 10, 64)
if stepVal < 60 {
step = "60"
step = "10"
}
params := map[string]string{
"start": start,
Expand Down Expand Up @@ -600,7 +600,7 @@ func describeServiceInterfaceMetricsRequestTotal(conf *bootstrap.Config, namespa
func describeServiceInterfaceMetricsRequestTimeout(conf *bootstrap.Config, namespace, service, calleeInstance, start, end, step string) (map[string]float64, error) {
stepVal, _ := strconv.ParseInt(step, 10, 64)
if stepVal < 60 {
step = "60"
step = "10"
}
params := map[string]string{
"start": start,
Expand Down Expand Up @@ -789,7 +789,7 @@ func describeServiceInstanceRequestTimeout(conf *bootstrap.Config, service, name
start, end, step string) (map[string]float64, error) {
stepVal, _ := strconv.ParseInt(step, 10, 64)
if stepVal < 60 {
step = "60"
step = "10"
}
params := map[string]string{
"start": start,
Expand Down Expand Up @@ -849,7 +849,7 @@ func describeServiceInstanceRequestTotal(conf *bootstrap.Config, service, namesp
start, end, step string) (map[string]*model.InstanceMetric, error) {
stepVal, _ := strconv.ParseInt(step, 10, 64)
if stepVal < 60 {
step = "60"
step = "10"
}
params := map[string]string{
"start": start,
Expand Down Expand Up @@ -1017,7 +1017,7 @@ func describeServiceCallerMetricRequestTotal(conf *bootstrap.Config, service, na
calleeInstance, start, end, step string) (map[string]map[string]map[string]*model.CallerMetric, error) {
stepVal, _ := strconv.ParseInt(step, 10, 64)
if stepVal < 60 {
step = "60"
step = "10"
}
params := map[string]string{
"start": start,
Expand Down Expand Up @@ -1102,7 +1102,7 @@ func describeServiceCallerMetricRequestTimeout(conf *bootstrap.Config, service,
start, end, step string) (map[string]map[string]map[string]float64, error) {
stepVal, _ := strconv.ParseInt(step, 10, 64)
if stepVal < 60 {
step = "60"
step = "10"
}
params := map[string]string{
"start": start,
Expand Down
Loading

0 comments on commit 49739c3

Please sign in to comment.