123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- <template>
- <div>
- <el-row>
- <el-col :md="12">
- <div class="source">
- <el-form label-position="left" class="server_info">
- <el-form-item label="Version">
- <span>{{ version }}</span>
- </el-form-item>
- <el-form-item label="Http Port">
- <span>{{ vhost_http_port }}</span>
- </el-form-item>
- <el-form-item label="Https Port">
- <span>{{ vhost_https_port }}</span>
- </el-form-item>
- <el-form-item label="Auth Timeout">
- <span>{{ auth_timeout }}</span>
- </el-form-item>
- <el-form-item label="Subdomain Host">
- <span>{{ subdomain_host }}</span>
- </el-form-item>
- <el-form-item label="Max PoolCount">
- <span>{{ max_pool_count }}</span>
- </el-form-item>
- <el-form-item label="HeartBeat Timeout">
- <span>{{ heart_beat_timeout }}</span>
- </el-form-item>
- <el-form-item label="Client Counts">
- <span>{{ client_counts }}</span>
- </el-form-item>
- <el-form-item label="Current Connections">
- <span>{{ cur_conns }}</span>
- </el-form-item>
- <el-form-item label="Proxy Counts">
- <span>{{ proxy_counts }}</span>
- </el-form-item>
- </el-form>
- </div>
- </el-col>
- <el-col :md="12">
- <div id="traffic" style="width: 400px;height:250px;margin-bottom: 30px;"></div>
- <div id="proxies" style="width: 400px;height:250px;"></div>
- </el-col>
- </el-row>
- </div>
- </template>
- <script>
- import {DrawTrafficChart, DrawProxyChart} from '../utils/chart.js'
- export default {
- data() {
- return {
- version: '',
- vhost_http_port: '',
- vhost_https_port: '',
- auth_timeout: '',
- subdomain_host: '',
- max_pool_count: '',
- heart_beat_timeout: '',
- client_counts: '',
- cur_conns: '',
- proxy_counts: ''
- }
- },
- created() {
- this.fetchData()
- },
- watch: {
- '$route': 'fetchData'
- },
- methods: {
- fetchData() {
- fetch('/api/serverinfo', {credentials: 'include'})
- .then(res => {
- return res.json()
- }).then(json => {
- this.version = json.version
- this.vhost_http_port = json.vhost_http_port
- if (this.vhost_http_port == 0) {
- this.vhost_http_port = "disable"
- }
- this.vhost_https_port = json.vhost_https_port
- if (this.vhost_https_port == 0) {
- this.vhost_https_port = "disable"
- }
- this.auth_timeout = json.auth_timeout
- this.subdomain_host = json.subdomain_host
- this.max_pool_count = json.max_pool_count
- this.heart_beat_timeout = json.heart_beat_timeout
- this.client_counts = json.client_counts
- this.cur_conns = json.cur_conns
- this.proxy_counts = 0
- if (json.proxy_type_count != null) {
- if (json.proxy_type_count.tcp != null) {
- this.proxy_counts += json.proxy_type_count.tcp
- }
- if (json.proxy_type_count.udp != null) {
- this.proxy_counts += json.proxy_type_count.udp
- }
- if (json.proxy_type_count.http != null) {
- this.proxy_counts += json.proxy_type_count.http
- }
- if (json.proxy_type_count.https != null) {
- this.proxy_counts += json.proxy_type_count.https
- }
- }
- DrawTrafficChart('traffic', json.total_traffic_in, json.total_traffic_out)
- DrawProxyChart('proxies', json)
- }).catch( err => {
- this.$message({
- showClose: true,
- message: 'Get server info from frps failed!',
- type: 'warning'
- })
- })
- }
- }
- }
- </script>
- <style>
- .source {
- border: 1px solid #eaeefb;
- border-radius: 4px;
- transition: .2s;
- padding: 24px;
- }
- .server_info {
- margin-left: 40px;
- font-size: 0px;
- }
- .server_info label {
- width: 150px;
- color: #99a9bf;
- }
- .server_info .el-form-item {
- margin-right: 0;
- margin-bottom: 0;
- width: 100%;
- }
- </style>
|