-
Notifications
You must be signed in to change notification settings - Fork 377
/
avg_duration.go
81 lines (69 loc) · 2.69 KB
/
avg_duration.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
// Copyright (c) 2021 Terminus, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package chart
import (
"context"
"fmt"
"strconv"
"time"
"google.golang.org/protobuf/types/known/structpb"
metricpb "github.com/erda-project/erda-proto-go/core/monitor/metric/pb"
"github.com/erda-project/erda-proto-go/msp/apm/service/pb"
"github.com/erda-project/erda/pkg/common/errors"
"github.com/erda-project/erda/pkg/math"
)
type AvgDurationChart struct {
*BaseChart
}
func (avgDuration *AvgDurationChart) GetChart(ctx context.Context) (*pb.ServiceChart, error) {
statement := fmt.Sprintf("SELECT avg(elapsed_mean::field) "+
"FROM application_http,application_rpc "+
"WHERE (target_terminus_key::tag=$terminus_key OR source_terminus_key::tag=$terminus_key) "+
"AND target_service_id::tag=$service_id "+
"GROUP BY time(%s)", avgDuration.Interval)
queryParams := map[string]*structpb.Value{
"terminus_key": structpb.NewStringValue(avgDuration.TenantId),
"service_id": structpb.NewStringValue(avgDuration.ServiceId),
}
request := &metricpb.QueryWithInfluxFormatRequest{
Start: strconv.FormatInt(avgDuration.StartTime, 10),
End: strconv.FormatInt(avgDuration.EndTime, 10),
Statement: statement,
Params: queryParams,
}
response, err := avgDuration.Metric.QueryWithInfluxFormat(ctx, request)
if err != nil {
return nil, errors.NewInternalServerError(err)
}
avgDurationCharts := make([]*pb.Chart, 0, 10)
rows := response.Results[0].Series[0].Rows
maxValue := float64(0)
for _, row := range rows {
avgDurationChart := new(pb.Chart)
date := row.Values[0].GetStringValue()
parse, err := time.ParseInLocation(Layout, date, time.Local)
if err != nil {
return nil, err
}
timestamp := parse.UnixNano() / int64(time.Millisecond)
avgDurationChart.Timestamp = timestamp
avgDurationChart.Value = math.DecimalPlacesWithDigitsNumber(row.Values[1].GetNumberValue(), 2)
avgDurationChart.Dimension = "Avg Duration"
if maxValue < avgDurationChart.Value {
maxValue = avgDurationChart.Value
}
avgDurationCharts = append(avgDurationCharts, avgDurationChart)
}
return &pb.ServiceChart{Type: pb.ChartType_AvgDuration.String(), MaxValue: maxValue, View: avgDurationCharts}, err
}