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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
var app = angular.module('sentinelDashboardApp');
app.controller('MetricCtl', ['$scope', '$stateParams', 'MetricService', '$interval', '$timeout',
function ($scope, $stateParams, MetricService, $interval, $timeout) {
$scope.endTime = new Date();
$scope.startTime = new Date();
$scope.startTime.setMinutes($scope.endTime.getMinutes() - 30);
$scope.startTimeFmt = formatDate($scope.startTime);
$scope.endTimeFmt = formatDate($scope.endTime);
function formatDate(date) {
return moment(date).format('YYYY/MM/DD HH:mm:ss');
}
$scope.changeStartTime = function (startTime) {
$scope.startTime = new Date(startTime);
$scope.startTimeFmt = formatDate(startTime);
};
$scope.changeEndTime = function (endTime) {
$scope.endTime = new Date(endTime);
$scope.endTimeFmt = formatDate(endTime);
};
$scope.app = $stateParams.app;
// 数据自动刷新频率
var DATA_REFRESH_INTERVAL = 1000 * 10;
$scope.servicePageConfig = {
pageSize: 6,
currentPageIndex: 1,
totalPage: 1,
totalCount: 0,
};
$scope.servicesChartConfigs = [];
$scope.pageChanged = function (newPageNumber) {
$scope.servicePageConfig.currentPageIndex = newPageNumber;
reInitIdentityDatas();
};
var searchT;
$scope.searchService = function () {
$timeout.cancel(searchT);
searchT = $timeout(function () {
reInitIdentityDatas();
}, 600);
}
var intervalId;
reInitIdentityDatas();
function reInitIdentityDatas() {
$interval.cancel(intervalId);
queryIdentityDatas();
intervalId = $interval(function () {
queryIdentityDatas();
}, DATA_REFRESH_INTERVAL);
};
$scope.$on('$destroy', function () {
$interval.cancel(intervalId);
});
$scope.initAllChart = function () {
$.each($scope.metrics, function (idx, metric) {
if (idx == $scope.metrics.length - 1) {
return;
}
const chart = new G2.Chart({
container: 'chart' + idx,
forceFit: true,
width: 100,
height: 250,
padding: [10, 30, 70, 50]
});
var maxQps = 0;
for (var i in metric.data) {
var item = metric.data[i];
if (item.passQps > maxQps) {
maxQps = item.passQps;
}
if (item.blockQps > maxQps) {
maxQps = item.blockQps;
}
}
chart.source(metric.data);
chart.scale('timestamp', {
type: 'time',
mask: 'YYYY-MM-DD HH:mm:ss'
});
chart.scale('passQps', {
min: 0,
max: maxQps,
fine: true,
alias: '通过 QPS'
// max: 10
});
chart.scale('blockQps', {
min: 0,
max: maxQps,
fine: true,
alias: '拒绝 QPS',
});
chart.scale('rt', {
min: 0,
fine: true,
});
chart.axis('rt', {
grid: null,
label: null
});
chart.axis('blockQps', {
grid: null,
label: null
});
chart.axis('timestamp', {
label: {
textStyle: {
textAlign: 'center', // 文本对齐方向,可取值为: start center end
fill: '#404040', // 文本的颜色
fontSize: '11', // 文本大小
//textBaseline: 'top', // 文本基准线,可取 top middle bottom,默认为middle
},
autoRotate: false,
formatter: function (text, item, index) {
return text.substring(11, 11 + 5);
}
}
});
chart.legend({
custom: true,
position: 'bottom',
allowAllCanceled: true,
itemFormatter: function (val) {
if ('passQps' === val) {
return '通过 QPS';
}
if ('blockQps' === val) {
return '拒绝 QPS';
}
return val;
},
items: [
{ value: 'passQps', marker: { symbol: 'hyphen', stroke: 'green', radius: 5, lineWidth: 2 } },
{ value: 'blockQps', marker: { symbol: 'hyphen', stroke: 'blue', radius: 5, lineWidth: 2 } },
//{ value: 'rt', marker: {symbol: 'hyphen', stroke: 'gray', radius: 5, lineWidth: 2} },
],
onClick: function (ev) {
const item = ev.item;
const value = item.value;
const checked = ev.checked;
const geoms = chart.getAllGeoms();
for (var i = 0; i < geoms.length; i++) {
const geom = geoms[i];
if (geom.getYScale().field === value) {
if (checked) {
geom.show();
} else {
geom.hide();
}
}
}
}
});
chart.line().position('timestamp*passQps').size(1).color('green').shape('smooth');
chart.line().position('timestamp*blockQps').size(1).color('blue').shape('smooth');
//chart.line().position('timestamp*rt').size(1).color('gray').shape('smooth');
G2.track(false);
chart.render();
});
};
$scope.metrics = [];
$scope.emptyObjs = [];
function queryIdentityDatas() {
var params = {
app: $scope.app,
pageIndex: $scope.servicePageConfig.currentPageIndex,
pageSize: $scope.servicePageConfig.pageSize,
desc: $scope.isDescOrder,
searchKey: $scope.serviceQuery
};
MetricService.queryAppSortedIdentities(params).success(function (data) {
$scope.metrics = [];
$scope.emptyObjs = [];
if (data.code === 0 && data.data) {
var metricsObj = data.data.metric;
var identityNames = Object.keys(metricsObj);
if (identityNames.length < 1) {
$scope.emptyServices = true;
} else {
$scope.emptyServices = false;
}
$scope.servicePageConfig.totalPage = data.data.totalPage;
$scope.servicePageConfig.pageSize = data.data.pageSize;
var totalCount = data.data.totalCount;
$scope.servicePageConfig.totalCount = totalCount;
for (i = 0; i < totalCount; i++) {
$scope.emptyObjs.push({});
}
$.each(identityNames, function (idx, identityName) {
var identityDatas = metricsObj[identityName];
var metrics = {};
metrics.resource = identityName;
// metrics.data = identityDatas;
metrics.data = fillZeros(identityDatas);
metrics.shortData = lastOfArray(identityDatas, 6);
$scope.metrics.push(metrics);
});
// push an empty element in the last, for ng-init reasons.
$scope.metrics.push([]);
} else {
$scope.emptyServices = true;
console.log(data.msg);
}
});
};
function fillZeros(metricData) {
if (!metricData || metricData.length == 0) {
return [];
}
var filledData = [];
filledData.push(metricData[0]);
var lastTime = metricData[0].timestamp / 1000;
for (var i = 1; i < metricData.length; i++) {
var curTime = metricData[i].timestamp / 1000;
if (curTime > lastTime + 1) {
for (var j = lastTime + 1; j < curTime; j++) {
filledData.push({
"timestamp": j * 1000,
"passQps": 0,
"blockQps": 0,
"successQps": 0,
"exception": 0,
"rt": 0,
"count": 0
})
}
}
filledData.push(metricData[i]);
lastTime = curTime;
}
return filledData;
}
function lastOfArray(arr, n) {
if (!arr.length) {
return [];
}
var rs = [];
for (i = 0; i < n && i < arr.length; i++) {
rs.push(arr[arr.length - 1 - i]);
}
return rs;
}
$scope.isDescOrder = true;
$scope.setDescOrder = function () {
$scope.isDescOrder = true;
reInitIdentityDatas();
}
$scope.setAscOrder = function () {
$scope.isDescOrder = false;
reInitIdentityDatas();
}
}]);