-
-
Notifications
You must be signed in to change notification settings - Fork 240
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- first error on each node with the last puppet run failed.
- Loading branch information
Showing
6 changed files
with
40 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{% extends 'layout.html' %} | ||
{% import '_macros.html' as macros %} | ||
{% block content %} | ||
<div class="ui fluid icon input hide" style="margin-bottom:20px"> | ||
<input autofocus="autofocus" class="filter-table" placeholder="Type here to filter..."> | ||
</div> | ||
<table class='ui basic compact sortable fixed wrapped table'> | ||
<thead> | ||
<tr> | ||
<th class="default default-sort">Certname</th> | ||
<th class="date">Report time</th> | ||
<th>Source</th> | ||
<th >Error</th> | ||
</tr> | ||
</thead> | ||
<tbody class="searchable"> | ||
{% for failure in failures %} | ||
<tr> | ||
<td><a href="{{url_for('node', env=current_env, node_name=failure.certname)}}">{{failure.certname}}</a></td> | ||
<td rel="utctimestamp">{{failure.timestamp}}</td> | ||
<td>{{failure.source}}</td> | ||
<td> | ||
{% if '\n' in failure.message %} | ||
<pre>{{failure.message}}</pre> | ||
{% else %} | ||
{{failure.message}} | ||
{% endif %} | ||
</td> | ||
</tr> | ||
{% endfor %} | ||
</tbody> | ||
</table> | ||
{% endblock content %} |
Empty file.