seninel部署
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

264 lines
8.1KB

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