123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264 |
- /**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you 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.
- */
- var App = require('app');
- var dateUtils = require('utils/date');
- App.AlertDefinition = DS.Model.extend({
- name: DS.attr('string'),
- label: DS.attr('string'),
- service: DS.belongsTo('App.Service'),
- serviceName: DS.attr('string'),
- componentName: DS.attr('string'),
- enabled: DS.attr('boolean'),
- scope: DS.attr('string'),
- interval: DS.attr('number'),
- type: DS.attr('string'),
- groups: DS.hasMany('App.AlertGroup'),
- reporting: DS.hasMany('App.AlertReportDefinition'),
- lastTriggered: DS.attr('number'),
- /**
- * Raw data from AlertDefinition/source
- * used to format request content for updating alert definition
- * @type {Object}
- */
- rawSourceData: {},
- /**
- * Counts of alert grouped by their status
- * Format:
- * <code>
- * {
- * "CRITICAL": 1,
- * "OK": 1,
- * "UNKNOWN": 0,
- * "WARN": 0
- * }
- * </code>
- * @type {object}
- */
- summary: {},
- /**
- * Formatted timestamp for latest alert triggering for current alertDefinition
- * @type {string}
- */
- lastTriggeredFormatted: function () {
- return dateUtils.dateFormat(this.get('lastTriggered'));
- }.property('lastTriggered'),
- /**
- * Formatted timestamp with <code>$.timeago</code>
- * @type {string}
- */
- lastTriggeredAgoFormatted: function () {
- var lastTriggered = this.get('lastTriggered');
- return lastTriggered ? $.timeago(new Date(lastTriggered)): '';
- }.property('lastTriggered'),
- /**
- * Formatted displayName for <code>componentName</code>
- * @type {String}
- */
- componentNameFormatted: function () {
- return App.format.role(this.get('componentName'));
- }.property('componentName'),
- /**
- * Status generates from child-alerts
- * Format: OK(1) WARN(2) CRIT(1) UNKN(1)
- * If single host: show: OK/WARNING/CRITICAL/UNKNOWN
- * If some there are no alerts with some state, this state isn't shown
- * If no OK/WARN/CRIT/UNKN state, then show PENDING
- * Order is equal to example
- * @type {string}
- */
- status: function () {
- var order = this.get('order'),
- summary = this.get('summary'),
- hostCnt = 0;
- order.forEach(function(state) {
- var cnt = summary[state] ? summary[state] : 0;
- hostCnt += cnt;
- });
- if (hostCnt > 1) {
- // multiple hosts
- return order.map(function (state) {
- var shortState = state.substring(0, 4);
- return summary[state] ? '<span class="label alert-state-' + state + '">' + shortState + ' ( ' + summary[state] + ' )</span>' : null;
- }).compact().join(' ');
- } else if (hostCnt == 1) {
- // single host, single status
- return order.map(function (state) {
- return summary[state] ? '<span class="alert-state-single-host label alert-state-'+ state + '">' + state + '</span>' : null;
- }).compact().join(' ');
- } else if (hostCnt == 0) {
- // penging
- var state = 'PENDING';
- return '<span class="alert-state-single-host label alert-state-'+ state + '">' + state + '</span>';
- }
- return null;
- }.property('summary'),
- isHostAlertDefinition: function () {
- var serviceID = (this.get('service')._id === "AMBARI"),
- component = (this.get('componentName') === "AMBARI_AGENT");
- return serviceID && component;
- }.property('service', 'componentName'),
- typeIconClass: function () {
- var typeIcons = this.get('typeIcons'),
- type = this.get('type');
- return typeIcons[type];
- }.property('type'),
- /**
- * if this definition is in state: CRIT / WARNING, if true, will show up in alerts fast access popup
- * @type {boolean}
- */
- isCriticalOrWarning: function () {
- return this.get('isCritical') || this.get('isWarning');
- }.property('isCritical', 'isWarning'),
- /**
- * if this definition is in state: CRIT
- * @type {boolean}
- */
- isCritical: function () {
- var summary = this.get('summary');
- var state = 'CRITICAL';
- return !!summary[state];
- }.property('summary'),
- /**
- * if this definition is in state: WARNING
- * @type {boolean}
- */
- isWarning: function () {
- var summary = this.get('summary');
- var state = 'WARNING';
- return !!summary[state];
- }.property('summary'),
- /**
- * For alerts we will have processes which are not typical
- * cluster services - like Ambari-Server. This method unifies
- * cluster services and other services into a common display-name.
- * @see App.AlertInstance#serviceDisplayName()
- */
- serviceDisplayName : function() {
- var serviceName = this.get('service.displayName');
- if (!serviceName) {
- serviceName = this.get('serviceName');
- if (serviceName) {
- serviceName = serviceName.toCapital();
- }
- }
- return serviceName;
- }.property('serviceName', 'service.displayName'),
- /**
- * List of css-classes for alert types
- * @type {object}
- */
- typeIcons: {
- 'METRIC': 'icon-bolt',
- 'SCRIPT': 'icon-file-text',
- 'WEB': 'icon-globe',
- 'PORT': 'icon-signin',
- 'AGGREGATE': 'icon-plus'
- },
- /**
- * Sort on load definitions by this severity order
- */
- severityOrder: ['CRITICAL', 'WARNING', 'OK', 'UNKNOWN', 'PENDING'],
- order: ['OK', 'WARNING', 'CRITICAL', 'UNKNOWN'],
- // todo: in future be mapped from server response
- description: 'Description for the Alert Definition.',
- // todo: in future be mapped from server response
- thresholds: '5-10'
- });
- App.AlertDefinition.reopenClass({
- getAllDefinitions: function () {
- return Array.prototype.concat.call(
- Array.prototype, App.PortAlertDefinition.find().toArray(),
- App.MetricsAlertDefinition.find().toArray(),
- App.WebAlertDefinition.find().toArray(),
- App.AggregateAlertDefinition.find().toArray(),
- App.ScriptAlertDefinition.find().toArray()
- )
- }
- });
- App.AlertReportDefinition = DS.Model.extend({
- type: DS.attr('string'),
- text: DS.attr('string'),
- value: DS.attr('number')
- });
- App.AlertMetricsSourceDefinition = DS.Model.extend({
- propertyList: [],
- value: DS.attr('string')
- });
- App.AlertMetricsUriDefinition = DS.Model.extend({
- http: DS.attr('string'),
- https: DS.attr('string'),
- httpsProperty: DS.attr('string'),
- httpsPropertyValue: DS.attr('string')
- });
- App.PortAlertDefinition = App.AlertDefinition.extend({
- defaultPort: DS.attr('number'),
- uri: DS.attr('string')
- });
- App.MetricsAlertDefinition = App.AlertDefinition.extend({
- jmx: DS.belongsTo('App.AlertMetricsSourceDefinition'),
- ganglia: DS.belongsTo('App.AlertMetricsSourceDefinition'),
- uri: DS.belongsTo('App.AlertMetricsUriDefinition')
- });
- App.WebAlertDefinition = App.AlertDefinition.extend({
- uri: DS.belongsTo('App.AlertMetricsUriDefinition')
- });
- App.AggregateAlertDefinition = App.AlertDefinition.extend({
- alertName: DS.attr('string')
- });
- App.ScriptAlertDefinition = App.AlertDefinition.extend({
- location: DS.attr('string')
- });
- App.AlertDefinition.FIXTURES = [];
- App.AlertReportDefinition.FIXTURES = [];
- App.AlertMetricsSourceDefinition.FIXTURES = [];
- App.PortAlertDefinition.FIXTURES = [];
- App.AlertMetricsUriDefinition.FIXTURES = [];
- App.MetricsAlertDefinition.FIXTURES = [];
- App.WebAlertDefinition.FIXTURES = [];
- App.AggregateAlertDefinition.FIXTURES = [];
- App.ScriptAlertDefinition.FIXTURES = [];
|