seninel部署
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

240 行
7.2KB

  1. var app = angular.module('sentinelDashboardApp');
  2. app.controller('SystemCtl', ['$scope', '$stateParams', 'SystemService', 'ngDialog', 'MachineService',
  3. function ($scope, $stateParams, SystemService,
  4. ngDialog, MachineService) {
  5. //初始化
  6. $scope.app = $stateParams.app;
  7. $scope.rulesPageConfig = {
  8. pageSize: 10,
  9. currentPageIndex: 1,
  10. totalPage: 1,
  11. totalCount: 0,
  12. };
  13. $scope.macsInputConfig = {
  14. searchField: ['text', 'value'],
  15. persist: true,
  16. create: false,
  17. maxItems: 1,
  18. render: {
  19. item: function (data, escape) {
  20. return '<div>' + escape(data.text) + '</div>';
  21. }
  22. },
  23. onChange: function (value, oldValue) {
  24. $scope.macInputModel = value;
  25. }
  26. };
  27. getMachineRules();
  28. function getMachineRules() {
  29. if (!$scope.macInputModel) {
  30. return;
  31. }
  32. let mac = $scope.macInputModel.split(':');
  33. SystemService.queryMachineRules($scope.app, mac[0], mac[1]).success(
  34. function (data) {
  35. if (data.code === 0 && data.data) {
  36. $scope.rules = data.data;
  37. $.each($scope.rules, function (idx, rule) {
  38. if (rule.highestSystemLoad >= 0) {
  39. rule.grade = 0;
  40. } else if (rule.avgRt >= 0) {
  41. rule.grade = 1;
  42. } else if (rule.maxThread >= 0) {
  43. rule.grade = 2;
  44. } else if (rule.qps >= 0) {
  45. rule.grade = 3;
  46. } else if (rule.highestCpuUsage >= 0) {
  47. rule.grade = 4;
  48. }
  49. });
  50. $scope.rulesPageConfig.totalCount = $scope.rules.length;
  51. } else {
  52. $scope.rules = [];
  53. $scope.rulesPageConfig.totalCount = 0;
  54. }
  55. });
  56. }
  57. $scope.getMachineRules = getMachineRules;
  58. var systemRuleDialog;
  59. $scope.editRule = function (rule) {
  60. $scope.currentRule = angular.copy(rule);
  61. $scope.systemRuleDialog = {
  62. title: '编辑系统保护规则',
  63. type: 'edit',
  64. confirmBtnText: '保存'
  65. };
  66. systemRuleDialog = ngDialog.open({
  67. template: '/app/views/dialog/system-rule-dialog.html',
  68. width: 680,
  69. overlay: true,
  70. scope: $scope
  71. });
  72. };
  73. $scope.addNewRule = function () {
  74. var mac = $scope.macInputModel.split(':');
  75. $scope.currentRule = {
  76. grade: 0,
  77. app: $scope.app,
  78. ip: mac[0],
  79. port: mac[1],
  80. };
  81. $scope.systemRuleDialog = {
  82. title: '新增系统保护规则',
  83. type: 'add',
  84. confirmBtnText: '新增'
  85. };
  86. systemRuleDialog = ngDialog.open({
  87. template: '/app/views/dialog/system-rule-dialog.html',
  88. width: 680,
  89. overlay: true,
  90. scope: $scope
  91. });
  92. };
  93. $scope.saveRule = function () {
  94. if ($scope.systemRuleDialog.type === 'add') {
  95. addNewRule($scope.currentRule);
  96. } else if ($scope.systemRuleDialog.type === 'edit') {
  97. saveRule($scope.currentRule, true);
  98. }
  99. };
  100. var confirmDialog;
  101. $scope.deleteRule = function (rule) {
  102. $scope.currentRule = rule;
  103. var ruleTypeDesc = '';
  104. var ruleTypeCount = null;
  105. if (rule.highestSystemLoad != -1) {
  106. ruleTypeDesc = 'LOAD';
  107. ruleTypeCount = rule.highestSystemLoad;
  108. } else if (rule.avgRt != -1) {
  109. ruleTypeDesc = 'RT';
  110. ruleTypeCount = rule.avgRt;
  111. } else if (rule.maxThread != -1) {
  112. ruleTypeDesc = '线程数';
  113. ruleTypeCount = rule.maxThread;
  114. } else if (rule.qps != -1) {
  115. ruleTypeDesc = 'QPS';
  116. ruleTypeCount = rule.qps;
  117. }else if (rule.highestCpuUsage != -1) {
  118. ruleTypeDesc = 'CPU 使用率';
  119. ruleTypeCount = rule.highestCpuUsage;
  120. }
  121. $scope.confirmDialog = {
  122. title: '删除系统保护规则',
  123. type: 'delete_rule',
  124. attentionTitle: '请确认是否删除如下系统保护规则',
  125. attention: '阈值类型: ' + ruleTypeDesc + ', 阈值: ' + ruleTypeCount,
  126. confirmBtnText: '删除',
  127. };
  128. confirmDialog = ngDialog.open({
  129. template: '/app/views/dialog/confirm-dialog.html',
  130. scope: $scope,
  131. overlay: true
  132. });
  133. };
  134. $scope.confirm = function () {
  135. if ($scope.confirmDialog.type === 'delete_rule') {
  136. deleteRule($scope.currentRule);
  137. // } else if ($scope.confirmDialog.type == 'enable_rule') {
  138. // $scope.currentRule.enable = true;
  139. // saveRule($scope.currentRule);
  140. // } else if ($scope.confirmDialog.type == 'disable_rule') {
  141. // $scope.currentRule.enable = false;
  142. // saveRule($scope.currentRule);
  143. // } else if ($scope.confirmDialog.type == 'enable_all') {
  144. // enableAll($scope.app);
  145. // } else if ($scope.confirmDialog.type == 'disable_all') {
  146. // disableAll($scope.app);
  147. } else {
  148. console.error('error');
  149. }
  150. };
  151. function deleteRule(rule) {
  152. SystemService.deleteRule(rule).success(function (data) {
  153. if (data.code === 0) {
  154. getMachineRules();
  155. confirmDialog.close();
  156. } else if (data.msg != null) {
  157. alert('失败:' + data.msg);
  158. } else {
  159. alert('失败:未知错误');
  160. }
  161. });
  162. }
  163. function addNewRule(rule) {
  164. if (rule.grade == 4 && (rule.highestCpuUsage < 0 || rule.highestCpuUsage > 1)) {
  165. alert('CPU 使用率模式的取值范围应为 [0.0, 1.0],对应 0% - 100%');
  166. return;
  167. }
  168. SystemService.newRule(rule).success(function (data) {
  169. if (data.code === 0) {
  170. getMachineRules();
  171. systemRuleDialog.close();
  172. } else if (data.msg != null) {
  173. alert('失败:' + data.msg);
  174. } else {
  175. alert('失败:未知错误');
  176. }
  177. });
  178. }
  179. function saveRule(rule, edit) {
  180. SystemService.saveRule(rule).success(function (data) {
  181. if (data.code === 0) {
  182. getMachineRules();
  183. if (edit) {
  184. systemRuleDialog.close();
  185. } else {
  186. confirmDialog.close();
  187. }
  188. } else if (data.msg != null) {
  189. alert('失败:' + data.msg);
  190. } else {
  191. alert('失败:未知错误');
  192. }
  193. });
  194. }
  195. queryAppMachines();
  196. function queryAppMachines() {
  197. MachineService.getAppMachines($scope.app).success(
  198. function (data) {
  199. if (data.code === 0) {
  200. // $scope.machines = data.data;
  201. if (data.data) {
  202. $scope.machines = [];
  203. $scope.macsInputOptions = [];
  204. data.data.forEach(function (item) {
  205. if (item.healthy) {
  206. $scope.macsInputOptions.push({
  207. text: item.ip + ':' + item.port,
  208. value: item.ip + ':' + item.port
  209. });
  210. }
  211. });
  212. }
  213. if ($scope.macsInputOptions.length > 0) {
  214. $scope.macInputModel = $scope.macsInputOptions[0].value;
  215. }
  216. } else {
  217. $scope.macsInputOptions = [];
  218. }
  219. }
  220. );
  221. };
  222. $scope.$watch('macInputModel', function () {
  223. if ($scope.macInputModel) {
  224. getMachineRules();
  225. }
  226. });
  227. }]);