2011-09-05 19:59:39 +00:00
|
|
|
@using NzbDrone.Core.Instrumentation
|
2011-04-22 04:03:59 +00:00
|
|
|
@model IEnumerable<NzbDrone.Core.Instrumentation.Log>
|
2011-04-21 06:18:28 +00:00
|
|
|
@section Scripts{
|
2010-10-24 17:35:58 +00:00
|
|
|
<script type="text/javascript">
|
|
|
|
function onRowDataBound(e) {
|
|
|
|
|
|
|
|
e.row.style.boarder = "";
|
|
|
|
|
2011-04-22 05:49:50 +00:00
|
|
|
if (e.dataItem.Level == "Warn") {
|
2010-10-24 17:35:58 +00:00
|
|
|
e.row.style.backgroundColor = "#FFD700";
|
|
|
|
}
|
2011-04-22 05:49:50 +00:00
|
|
|
else if (e.dataItem.Level == "Error") {
|
2010-10-24 17:35:58 +00:00
|
|
|
e.row.style.backgroundColor = "#FF7500";
|
|
|
|
}
|
2011-04-22 05:49:50 +00:00
|
|
|
else if (e.dataItem.Level == "Fatal") {
|
2010-10-24 17:35:58 +00:00
|
|
|
e.row.style.backgroundColor = "black";
|
2010-10-30 02:46:32 +00:00
|
|
|
e.row.style.color = "red";
|
2010-10-24 17:35:58 +00:00
|
|
|
}
|
|
|
|
//e.row.style.color = 'blue';
|
|
|
|
}
|
|
|
|
</script>
|
2011-04-21 06:18:28 +00:00
|
|
|
}
|
2011-12-10 05:05:17 +00:00
|
|
|
@{ ViewBag.Title = "Logs";}
|
2011-04-21 06:18:28 +00:00
|
|
|
@section ActionMenu{
|
2011-11-24 05:50:41 +00:00
|
|
|
<ul class="sub-menu">
|
|
|
|
<li>@Ajax.ActionLink("Clear Logs", "Clear", "Log", new AjaxOptions { OnSuccess = "reloadGrid" })</li>
|
|
|
|
</ul>
|
|
|
|
<div style="margin-bottom: 10px">
|
|
|
|
</div>
|
2011-04-21 06:18:28 +00:00
|
|
|
}
|
2011-12-01 05:25:01 +00:00
|
|
|
<div class="infoBox">
|
|
|
|
Log entries older than 30 days are automatically deleted.</div>
|
|
|
|
@{Html.Telerik().Grid<Log>().Name("logsGrid")
|
2011-04-21 06:18:28 +00:00
|
|
|
.TableHtmlAttributes(new { @class = "Grid" })
|
2011-04-10 02:44:01 +00:00
|
|
|
.Columns(columns =>
|
|
|
|
{
|
2011-09-08 00:11:13 +00:00
|
|
|
columns.Bound(c => c.Time).Title("Time").Width(170);
|
2011-11-24 05:50:41 +00:00
|
|
|
columns.Bound(c => c.Level).Title("Level").Width(70);
|
2011-09-08 00:11:13 +00:00
|
|
|
columns.Bound(c => c.Logger).Title("Source");
|
2011-04-10 02:44:01 +00:00
|
|
|
columns.Bound(c => c.Message);
|
|
|
|
})
|
|
|
|
.DetailView(detailView => detailView.ClientTemplate(
|
2011-07-04 05:23:38 +00:00
|
|
|
"<div>Method: <#= Method #></div>" +
|
2011-05-21 00:21:31 +00:00
|
|
|
"<div><#= ExceptionType #></div>" +
|
|
|
|
"<div class='stackframe'><#= Exception #></div>"
|
2011-09-05 19:59:39 +00:00
|
|
|
))
|
2011-11-24 05:50:41 +00:00
|
|
|
.DataBinding(data => data.Ajax().Select("AjaxBinding", "Log").Enabled(true))
|
2011-09-05 19:59:39 +00:00
|
|
|
.Sortable(rows => rows.OrderBy(epSort => epSort.Add(c => c.Time).Descending()).Enabled(true))
|
2011-11-24 05:50:41 +00:00
|
|
|
.Pageable(paging => paging.Style(GridPagerStyles.Status).PageOnScroll(true).PageSize(100))
|
2011-09-05 19:59:39 +00:00
|
|
|
.Filterable()
|
2011-04-10 02:44:01 +00:00
|
|
|
.ClientEvents(c => c.OnRowDataBound("onRowDataBound"))
|
2011-12-01 05:25:01 +00:00
|
|
|
.Scrollable(c => c.Height(500))
|
2011-04-21 06:18:28 +00:00
|
|
|
.Render();}
|
2011-08-06 02:04:35 +00:00
|
|
|
<script type="text/javascript">
|
|
|
|
function reloadGrid() {
|
|
|
|
var grid = $('#logsGrid').data('tGrid');
|
|
|
|
grid.rebind();
|
|
|
|
}
|
2011-11-23 06:41:38 +00:00
|
|
|
</script>
|