添加项目文件。

This commit is contained in:
Zel
2025-01-22 23:31:03 +08:00
parent 1b8ba6771f
commit 2ae76476fb
894 changed files with 774558 additions and 0 deletions

View File

@@ -0,0 +1,93 @@
@using TightWiki.Models
@model TightWiki.Models.ViewModels.Admin.MetricsViewModel
@{
Layout = "/Views/Shared/_Layout.cshtml";
var sessionState = ViewData["SessionState"] as TightWiki.SessionState ?? throw new Exception("Wiki State Context cannot be null.");
}
<h3>
Metrics
</h3>
<p>
<a href="http://NetworkDLS.com/">NetworkDLS</a> <a href="http://TightWiki.com/">TightWiki</a> version @Model.ApplicationVersion<br /><br />
</p>
@if (!string.IsNullOrEmpty(Model.ErrorMessage))
{
<div class="alert alert-danger">@Html.Raw(Model.ErrorMessage)</div>
}
@if (!string.IsNullOrEmpty(Model.SuccessMessage))
{
<div class="alert alert-success">@Html.Raw(Model.SuccessMessage)</div>
}
<h2>General</h2>
<table class="table fixedTable100 table-striped" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><strong>Pages</strong></td>
<td><strong>Page Revisions</strong></td>
<td><strong>Page Attachments</strong></td>
<td><strong>Inter-Page Links</strong></td>
</tr>
<tr>
<td><a href="@GlobalConfiguration.BasePath/Admin/Pages">@Model.Metrics.Pages.ToString("N0")</a></td>
<td>@Model.Metrics.PageRevisions.ToString("N0")</td>
<td>@Model.Metrics.PageAttachments.ToString("N0")</td>
<td>@Model.Metrics.IntraLinks.ToString("N0")</td>
</tr>
<tr>
<td><strong>Page Tags</strong></td>
<td><strong>Page Attachment Revisions</strong></td>
<td><strong>Page Search Tokens</strong></td>
<td><strong>Namespaces</strong></td>
</tr>
<tr>
<td>@Model.Metrics.PageTags.ToString("N0")</td>
<td>@Model.Metrics.PageAttachmentRevisions.ToString("N0")</td>
<td><a href="@GlobalConfiguration.BasePath/Page/Search">@Model.Metrics.PageSearchTokens.ToString("N0")</a></td>
<td><a href="@GlobalConfiguration.BasePath/Admin/Namespaces">@Model.Metrics.Namespaces.ToString("N0")</a></td>
</tr>
<tr>
<td><strong>Users</strong></td>
<td><strong>Profiles</strong></td>
<td><strong>Exceptions</strong></td>
<td><strong>&nbsp;</strong></td>
</tr>
<tr>
<td><a href="@GlobalConfiguration.BasePath/Admin/Accounts">@Model.Metrics.Users.ToString("N0")</a></td>
<td><a href="@GlobalConfiguration.BasePath/Admin/Accounts">@Model.Metrics.Profiles.ToString("N0")</a></td>
<td><a href="@GlobalConfiguration.BasePath/Admin/Exceptions">@Model.Metrics.Exceptions.ToString("N0")</a></td>
<td>&nbsp;</td>
</tr>
</table>
<h2>Cache</h2>
@Html.Raw(TightWiki.Library.ConfirmActionHelper.GenerateWarnLink(GlobalConfiguration.BasePath,
"Flushing the memory cache will cause any cached items to be dropped and require database hits as pages are requested. Continue?",
"Purge Memory Cache", "/Admin/PurgeMemoryCache", Context.Request.Path.Value))
<br />
<table class="table fixedTable100 table-striped" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><strong>Items</strong></td>
<td><strong>Puts</strong></td>
<td><strong>Gets</strong></td>
<td><strong>Hits</strong></td>
<td><strong>Misses</strong></td>
<td><strong>Limit(MB)</strong></td>
</tr>
<tr>
<td>@TightWiki.Caching.WikiCache.CacheItemCount.ToString("N0")</td>
<td>@TightWiki.Caching.WikiCache.CachePuts.ToString("N0")</td>
<td>@TightWiki.Caching.WikiCache.CacheGets.ToString("N0")</td>
<td>@TightWiki.Caching.WikiCache.CacheHits.ToString("N0")</td>
<td>@TightWiki.Caching.WikiCache.CacheMisses.ToString("N0")</td>
<td>@NTDLS.Helpers.Formatters.FileSize((long)TightWiki.Caching.WikiCache.CacheMemoryLimit)</td>
</tr>
</table>