c6342969c5
This commit excludes the health of any service instances from the Node Listing page. This means that if you are viewing the Node listing page you will only see failing nodes if there are any Node Checks failing, Service Instance Health checks are no longer taken into account. Co-authored-by: Jamie White <jamie@jgwhite.co.uk>
65 lines
2.1 KiB
JavaScript
65 lines
2.1 KiB
JavaScript
import Model, { attr, hasMany } from '@ember-data/model';
|
|
import { computed } from '@ember/object';
|
|
import { filter } from '@ember/object/computed';
|
|
import { fragmentArray } from 'ember-data-model-fragments/attributes';
|
|
|
|
export const PRIMARY_KEY = 'uid';
|
|
export const SLUG_KEY = 'ID';
|
|
|
|
export default class Node extends Model {
|
|
@attr('string') uid;
|
|
@attr('string') ID;
|
|
|
|
@attr('string') Datacenter;
|
|
@attr('string') Partition;
|
|
@attr('string') Address;
|
|
@attr('string') Node;
|
|
@attr('number') SyncTime;
|
|
@attr('number') CreateIndex;
|
|
@attr('number') ModifyIndex;
|
|
@attr() meta; // {}
|
|
@attr() Meta; // {}
|
|
@attr() TaggedAddresses; // {lan, wan}
|
|
@attr({ defaultValue: () => [] }) Resources; // []
|
|
// Services are reshaped to a different shape to what you sometimes get from
|
|
// the response, see models/node.js
|
|
@hasMany('service-instance') Services; // TODO: Rename to ServiceInstances
|
|
@fragmentArray('health-check') Checks;
|
|
// MeshServiceInstances are all instances that aren't connect-proxies this
|
|
// currently includes gateways as these need to show up in listings
|
|
@filter('Services', item => item.Service.Kind !== 'connect-proxy') MeshServiceInstances;
|
|
// ProxyServiceInstances are all instances that are connect-proxies
|
|
@filter('Services', item => item.Service.Kind === 'connect-proxy') ProxyServiceInstances;
|
|
|
|
@filter('Checks', item => item.ServiceID === '') NodeChecks;
|
|
|
|
@computed('ChecksCritical', 'ChecksPassing', 'ChecksWarning')
|
|
get Status() {
|
|
switch (true) {
|
|
case this.ChecksCritical !== 0:
|
|
return 'critical';
|
|
case this.ChecksWarning !== 0:
|
|
return 'warning';
|
|
case this.ChecksPassing !== 0:
|
|
return 'passing';
|
|
default:
|
|
return 'empty';
|
|
}
|
|
}
|
|
|
|
@computed('NodeChecks.[]')
|
|
get ChecksCritical() {
|
|
return this.NodeChecks.filter(item => item.Status === 'critical').length;
|
|
}
|
|
|
|
@computed('NodeChecks.[]')
|
|
get ChecksPassing() {
|
|
return this.NodeChecks.filter(item => item.Status === 'passing').length;
|
|
}
|
|
|
|
@computed('NodeChecks.[]')
|
|
get ChecksWarning() {
|
|
return this.NodeChecks.filter(item => item.Status === 'warning').length;
|
|
}
|
|
}
|