Skip to content

Commit

Permalink
ui: [BUGFIX] Ensure we show the correct count of instances for each n…
Browse files Browse the repository at this point in the history
…ode (#9749)

* Add MeshServiceInstances property to node model

* Use MeshServiceInstances property

* Make sure we show the 'No * checks' if Checks.length is zero
  • Loading branch information
johncowen authored and dizzyup committed Apr 21, 2021
1 parent fe65a42 commit f58d97b
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .changelog/9749.txt
@@ -0,0 +1,3 @@
```release-note:bug
ui: Exclude proxies when showing the total number of instances on a node.
```
@@ -1,4 +1,3 @@
{{#if (gt @items.length 0)}}
{{#if (eq this.healthCheck.check 'empty') }}
<dl class={{this.healthCheck.check}}>
<dt>
Expand Down Expand Up @@ -28,5 +27,4 @@
<dd>{{this.healthCheck.count}}/{{@items.length}} {{@type}} checks {{this.healthCheck.status}}</dd>
</dl>
{{/if}}
{{/if}}
{{/if}}
{{/if}}
Expand Up @@ -30,7 +30,7 @@ as |item index|>
<span class="leader" data-test-leader={{@leader.Address}}>Leader</span>
{{/if}}
<span>
{{format-number item.Services.length}} {{pluralize item.Services.length 'Service' without-count=true}}
{{format-number item.MeshServiceInstances.length}} {{pluralize item.MeshServiceInstances.length 'Service' without-count=true}}
</span>
<dl>
<dt>
Expand Down
6 changes: 6 additions & 0 deletions ui/packages/consul-ui/app/models/node.js
@@ -1,5 +1,6 @@
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';
Expand All @@ -18,8 +19,13 @@ export default class Node extends Model {
@attr() meta; // {}
@attr() Meta; // {}
@attr() TaggedAddresses; // {lan, wan}
// 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;

@computed('Checks.[]', 'ChecksCritical', 'ChecksPassing', 'ChecksWarning')
get Status() {
Expand Down
Expand Up @@ -24,7 +24,7 @@
)
)

(reject-by 'Service.Kind' 'connect-proxy' item.Services)
item.MeshServiceInstances

as |sort filters items|}}
<div class="tab-section">
Expand Down

0 comments on commit f58d97b

Please sign in to comment.