访问日志增加区域和ISP信息

This commit is contained in:
GoEdgeLab
2020-11-05 11:51:42 +08:00
parent 7f4bd06bbb
commit a3bd0e816d
2 changed files with 38 additions and 0 deletions

View File

@@ -112,5 +112,13 @@
<td>IP</td>
<td>{{accessLog.remoteAddr}}</td>
</tr>
<tr v-if="region != null">
<td>区域</td>
<td>{{region.full}}</td>
</tr>
<tr v-if="region.isp.length > 0">
<td>ISP</td>
<td>{{region.isp}}</td>
</tr>
</table>
</div>