You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
104 lines
3.7 KiB
104 lines
3.7 KiB
@using NzbDrone.Core.Instrumentation
|
|
@model IEnumerable<Log>
|
|
@{ ViewBag.Title = "Logs";}
|
|
@section ActionMenu{
|
|
<ul class="sub-menu">
|
|
<li>@Ajax.ActionLink("Clear Logs", "Clear", "Log", new AjaxOptions { OnSuccess = "redrawGrid" })</li>
|
|
<li>@Html.ActionLink("File", "File", "Log")</li>
|
|
</ul>
|
|
}
|
|
@section HeaderContent{
|
|
<style>
|
|
#logGrid td
|
|
{
|
|
padding: 2px 8px 2px 8px;
|
|
}
|
|
</style>
|
|
}
|
|
<div class="infoBox">
|
|
Log entries older than 30 days are automatically deleted.</div>
|
|
<div class="grid-container">
|
|
<table id="logGrid" class="dataTablesGrid hidden-grid">
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
Time
|
|
</th>
|
|
<th>
|
|
Level
|
|
</th>
|
|
<th>
|
|
Source
|
|
</th>
|
|
<th>
|
|
Message
|
|
</th>
|
|
@*Details Column*@
|
|
<th style="display: none;">
|
|
Details
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
@section Scripts{
|
|
<script type="text/javascript">
|
|
$(document).ready(function () {
|
|
$('.dataTablesGrid').removeClass('hidden-grid');
|
|
|
|
oTable = $('#logGrid').dataTable({
|
|
"sAjaxSource": "Log/AjaxBinding",
|
|
"bProcessing": false,
|
|
"bServerSide": true,
|
|
"bShowAll": false,
|
|
"bPaginate": true,
|
|
"bLengthChange": false,
|
|
"bFilter": true,
|
|
"bSort": true,
|
|
"bInfo": true,
|
|
"bAutoWidth": false,
|
|
"iDisplayLength": 50,
|
|
"sPaginationType": "four_button",
|
|
"aoColumns": [
|
|
{ sWidth: '150px', "mDataProp": "Time" }, //Time
|
|
{sWidth: '50px', "mDataProp": "Level" }, //Level
|
|
{sWidth: '240px', "mDataProp": "Source" }, //Source
|
|
{sWidth: 'auto', "mDataProp": "Message", "bSortable": false }, //Message
|
|
{sWidth: 'auto', "mDataProp": "Details", "bSortable": false, "bVisible": false, "fnRender": function (row) {
|
|
var result = "<div>Method: " + row.aData["Method"] + "</div>";
|
|
|
|
if (row.aData["ExceptionType"] !== null) {
|
|
result += "<div>Exception Type: " + row.aData["ExceptionType"] + "</div>" +
|
|
"<div class=\"stackFrame\">Exception: " + row.aData["Exception"] + "</div>";
|
|
}
|
|
|
|
return result;
|
|
}
|
|
} //Details
|
|
],
|
|
"aaSorting": [[0, 'desc']],
|
|
"fnRowCallback": function (nRow, aData, iDisplayIndex, iDisplayIndexFull) {
|
|
fnRowCallback(nRow, aData);
|
|
}
|
|
});
|
|
});
|
|
|
|
function fnRowCallback(nRow, aData) {
|
|
//e.row.style.boarder = "";
|
|
|
|
if (aData["Level"] == "Warn") {
|
|
nRow.style.backgroundColor = "#FFD700";
|
|
}
|
|
else if (aData["Level"] == "Error") {
|
|
nRow.style.backgroundColor = "#FF7500";
|
|
}
|
|
else if (aData["Level"] == "Fatal") {
|
|
nRow.style.backgroundColor = "black";
|
|
nRow.style.color = "red";
|
|
}
|
|
}
|
|
</script>
|
|
}
|