Skip to content

Commit

Permalink
label health failure message (#217)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeknovy authored Feb 2, 2022
1 parent e9bbe2a commit f5b75fb
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,14 @@ <h6 class="card-header bg-white border-0">Response Message Failures</h6>
<thead>
<tr>
<th scope="col" class="hd jtl-head-color">
<mfDefaultSorter by="responseMessage">response failure</mfDefaultSorter>
<mfDefaultSorter by="responseMessage">response</mfDefaultSorter>
</th>
<th scope="col" class="hd jtl-head-color">
<mfDefaultSorter by="statusCode">status code</mfDefaultSorter>
</th>
<th scope="col" class="hd jtl-head-color">
<mfDefaultSorter by="failureMessage">failure</mfDefaultSorter>
</th>
<th scope="col" class="hd jtl-head-color">
<mfDefaultSorter by="count">occurrence</mfDefaultSorter>
</th>
Expand All @@ -45,6 +48,7 @@ <h6 class="card-header bg-white border-0">Response Message Failures</h6>
<tr *ngFor="let _ of mf.data">
<td>{{_.responseMessage}} </td>
<td>{{_.statusCode || "n/a"}}</td>
<td>{{_.failureMessage}}</td>
<td>{{_.count}}</td>
</tr>
</tbody>
Expand Down

0 comments on commit f5b75fb

Please sign in to comment.