pull/13/merge
parent
ca5888160d
commit
9c24b5989b
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,65 @@
|
|||||||
|
@using NzbDrone.Common
|
||||||
|
@using NzbDrone.Core.Instrumentation
|
||||||
|
@using NzbDrone.Web.Helpers
|
||||||
|
@model IEnumerable<NzbDrone.Core.Instrumentation.Log>
|
||||||
|
@section Scripts{
|
||||||
|
<script type="text/javascript">
|
||||||
|
function onRowDataBound(e) {
|
||||||
|
|
||||||
|
e.row.style.boarder = "";
|
||||||
|
|
||||||
|
if (e.dataItem.Level == "Warn") {
|
||||||
|
e.row.style.backgroundColor = "#FFD700";
|
||||||
|
}
|
||||||
|
else if (e.dataItem.Level == "Error") {
|
||||||
|
e.row.style.backgroundColor = "#FF7500";
|
||||||
|
}
|
||||||
|
else if (e.dataItem.Level == "Fatal") {
|
||||||
|
e.row.style.backgroundColor = "black";
|
||||||
|
e.row.style.color = "red";
|
||||||
|
}
|
||||||
|
//e.row.style.color = 'blue';
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
}
|
||||||
|
@{ ViewBag.Title = "Logs";}
|
||||||
|
@section ActionMenu{
|
||||||
|
<ul class="sub-menu">
|
||||||
|
<li>@Ajax.ActionLink("Clear Logs", "Clear", "Log", new AjaxOptions { OnSuccess = "reloadGrid" })</li>
|
||||||
|
<li>@Html.ActionLink("File", "File", "Log")</li>
|
||||||
|
</ul>
|
||||||
|
}
|
||||||
|
<div class="infoBox">
|
||||||
|
Log entries older than 30 days are automatically deleted.</div>
|
||||||
|
@{Html.Telerik().Grid<Log>().Name("logsGrid")
|
||||||
|
.TableHtmlAttributes(new { @class = "Grid" })
|
||||||
|
.Columns(columns =>
|
||||||
|
{
|
||||||
|
columns.Bound(c => c.Time).Title("Time").Width(170);
|
||||||
|
columns.Bound(c => c.Level).Title("Level").Width(70);
|
||||||
|
columns.Bound(c => c.Logger).Title("Source");
|
||||||
|
columns.Bound(c => c.Message);
|
||||||
|
})
|
||||||
|
.DetailView(detailView => detailView.ClientTemplate(
|
||||||
|
"<div>Method: <#= Method #></div>" +
|
||||||
|
"<div><#= ExceptionType #></div>" +
|
||||||
|
"<div class='stackframe'><#= Exception #></div>"
|
||||||
|
))
|
||||||
|
.DataBinding(data => data.Ajax().Select("AjaxBindingOld", "Log").Enabled(true))
|
||||||
|
.Sortable(rows => rows.OrderBy(epSort => epSort.Add(c => c.Time).Descending()).Enabled(true))
|
||||||
|
.Pageable(paging => paging.Style(GridPagerStyles.Status).PageOnScroll(true).PageSize(100))
|
||||||
|
.Filterable()
|
||||||
|
.ClientEvents(c => c.OnRowDataBound("onRowDataBound"))
|
||||||
|
.Scrollable(c => c.Height(500))
|
||||||
|
.ClientEvents(clientEvents =>
|
||||||
|
{
|
||||||
|
if (EnviromentProvider.IsProduction)
|
||||||
|
clientEvents.OnError("grid_onError");
|
||||||
|
})
|
||||||
|
.Render();}
|
||||||
|
<script type="text/javascript">
|
||||||
|
function reloadGrid() {
|
||||||
|
var grid = $('#logsGrid').data('tGrid');
|
||||||
|
grid.rebind();
|
||||||
|
}
|
||||||
|
</script>
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Loading…
Reference in new issue