feat(#I12X7W): 增加 dotnet --info 运行时检查
#Comment comment #I12X7W #Issue link #I12X7W
This commit is contained in:
parent
c464ffe754
commit
c2a0a3cad5
|
@ -12,7 +12,7 @@
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Bootstrap.Security.DataAccess" Version="2.2.21" />
|
<PackageReference Include="Bootstrap.Security.DataAccess" Version="2.2.21" />
|
||||||
<PackageReference Include="Bootstrap.Security.Mvc" Version="3.0.0" />
|
<PackageReference Include="Bootstrap.Security.Mvc" Version="3.0.1-beta4" />
|
||||||
<PackageReference Include="Longbow.Configuration" Version="2.2.7" />
|
<PackageReference Include="Longbow.Configuration" Version="2.2.7" />
|
||||||
<PackageReference Include="Longbow.Logging" Version="3.0.0" />
|
<PackageReference Include="Longbow.Logging" Version="3.0.0" />
|
||||||
<PackageReference Include="Longbow.Tasks" Version="2.2.24" />
|
<PackageReference Include="Longbow.Tasks" Version="2.2.24" />
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
return healthStatus[value];
|
return healthStatus[value];
|
||||||
};
|
};
|
||||||
|
|
||||||
var cate = { "db": "数据库", "file": "组件文件", "mem": "内存", "Gitee": "Gitee 接口", "gc": "垃圾回收器" };
|
var cate = { "db": "数据库", "file": "组件文件", "mem": "内存", "Gitee": "Gitee 接口", "gc": "垃圾回收器", "dotnet-runtime": "运行时" };
|
||||||
var CategoryFormatter = function (value) {
|
var CategoryFormatter = function (value) {
|
||||||
return cate[value];
|
return cate[value];
|
||||||
};
|
};
|
||||||
|
@ -70,6 +70,7 @@
|
||||||
{
|
{
|
||||||
title: "值", field: "value", formatter: function (value, row) {
|
title: "值", field: "value", formatter: function (value, row) {
|
||||||
if (row.name === "Exception") value = $.format("<span class='text-danger'>{0}</span>", value);
|
if (row.name === "Exception") value = $.format("<span class='text-danger'>{0}</span>", value);
|
||||||
|
if (row.name === "dotnet --info") value = value.replace(/\r\n/g, "<br>");
|
||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue