Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions src/ServicePulse.Host/app/js/views/custom_checks/customChecks.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,18 @@ <h1>Custom checks</h1>
<div class="col-xs-10">
<div class="row box-header">
<div class="col-sm-12 no-side-padding">
<p class="lead pre-wrap">{{item.failure_reason}}</p>
<p>{{item.custom_check_id}} </p>
<p>
{{item.category}} reported by {{item.originating_endpoint.name}} on {{item.originating_endpoint.host}} <sp-moment date="{{item.reported_at}}"></sp-moment>
</p>
<p class="lead pre-wrap">{{item.failure_reason}}</p>
<div class="row">
<div class="col-sm-12 no-side-padding">
<p class="metadata">
<span class="metadata"><i aria-hidden="true" class="fa fa-check"></i> Check: {{item.custom_check_id}}</span>
<span class="metadata"><i aria-hidden="true" class="fa fa-list"></i> Category: {{item.category}}</span>
<span class="metadata"><i aria-hidden="true" class="fa pa-endpoint"></i> Endpoint: {{item.originating_endpoint.name}}</span>
<span class="metadata"><i aria-hidden="true" class="fa fa-server"></i> Host: {{item.originating_endpoint.host}}</span>
<span class="metadata"><i aria-hidden="true" class="fa fa-clock-o"></i> Last checked: <sp-moment date="{{item.reported_at}}"></sp-moment></span>
</p>
</div>
</div>
</div>
</div>
</div>
Expand Down