mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-10-10 23:47:39 +08:00
feat: 面板设置中冗余系统日志
This commit is contained in:
parent
7452cc19e0
commit
73d93d6104
4 changed files with 147 additions and 130 deletions
|
@ -47,6 +47,16 @@ const logsRouter = {
|
||||||
requiresAuth: false,
|
requiresAuth: false,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: 'ssh',
|
||||||
|
name: 'SSHLog2',
|
||||||
|
component: () => import('@/views/host/ssh/log/log.vue'),
|
||||||
|
hidden: true,
|
||||||
|
meta: {
|
||||||
|
activeMenu: '/logs',
|
||||||
|
requiresAuth: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
|
@ -2,139 +2,11 @@
|
||||||
<div>
|
<div>
|
||||||
<FireRouter />
|
<FireRouter />
|
||||||
|
|
||||||
<LayoutContent v-loading="loading" :title="$t('ssh.loginLogs')">
|
<Log />
|
||||||
<template #toolbar>
|
|
||||||
<el-row>
|
|
||||||
<el-col :span="16">
|
|
||||||
<el-tag type="success" class="tagClass" @click="onSearch('Success')">
|
|
||||||
{{ $t('commons.status.success') }}: {{ successfulCount }}
|
|
||||||
</el-tag>
|
|
||||||
<el-tag type="danger" class="tagClass" @click="onSearch('Failed')" style="margin-left: 5px">
|
|
||||||
{{ $t('commons.status.failed') }}: {{ faliedCount }}
|
|
||||||
</el-tag>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="8">
|
|
||||||
<TableSetting @search="search()" />
|
|
||||||
<div class="search-button">
|
|
||||||
<el-input
|
|
||||||
v-model="searchInfo"
|
|
||||||
@clear="search()"
|
|
||||||
clearable
|
|
||||||
suffix-icon="Search"
|
|
||||||
@keyup.enter="search()"
|
|
||||||
@change="search()"
|
|
||||||
:placeholder="$t('commons.button.search')"
|
|
||||||
></el-input>
|
|
||||||
</div>
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<template #search>
|
|
||||||
<el-select v-model="searchStatus" @change="search()">
|
|
||||||
<template #prefix>{{ $t('commons.table.status') }}</template>
|
|
||||||
<el-option :label="$t('commons.table.all')" value="All"></el-option>
|
|
||||||
<el-option :label="$t('commons.status.success')" value="Success"></el-option>
|
|
||||||
<el-option :label="$t('commons.status.failed')" value="Failed"></el-option>
|
|
||||||
</el-select>
|
|
||||||
</template>
|
|
||||||
<template #main>
|
|
||||||
<ComplexTable :pagination-config="paginationConfig" :data="data" @search="search">
|
|
||||||
<el-table-column min-width="60" :label="$t('logs.loginIP')" prop="address" />
|
|
||||||
<el-table-column min-width="30" :label="$t('ssh.belong')" prop="isLocal">
|
|
||||||
<template #default="{ row }">{{ row.isLocal ? $t('ssh.local') : $t('ssh.remote') }}</template>
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column min-width="40" :label="$t('firewall.port')" prop="port" />
|
|
||||||
<el-table-column min-width="40" :label="$t('ssh.loginMode')" prop="authMode">
|
|
||||||
<template #default="{ row }">{{ $t('ssh.' + row.authMode) }}</template>
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column min-width="40" :label="$t('ssh.loginUser')" prop="user" />
|
|
||||||
<el-table-column min-width="40" :label="$t('logs.loginStatus')" prop="status">
|
|
||||||
<template #default="{ row }">
|
|
||||||
<div v-if="row.status === 'Success'">
|
|
||||||
<el-tag type="success">{{ $t('commons.status.success') }}</el-tag>
|
|
||||||
</div>
|
|
||||||
<div v-else>
|
|
||||||
<el-tooltip class="box-item" effect="dark" :content="row.message" placement="top-start">
|
|
||||||
<el-tag type="danger">{{ $t('commons.status.failed') }}</el-tag>
|
|
||||||
</el-tooltip>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="date"
|
|
||||||
:label="$t('commons.table.date')"
|
|
||||||
:formatter="dateFormat"
|
|
||||||
show-overflow-tooltip
|
|
||||||
/>
|
|
||||||
</ComplexTable>
|
|
||||||
</template>
|
|
||||||
</LayoutContent>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import FireRouter from '@/views/host/ssh/index.vue';
|
import FireRouter from '@/views/host/ssh/index.vue';
|
||||||
import ComplexTable from '@/components/complex-table/index.vue';
|
import Log from '@/views/host/ssh/log/log.vue';
|
||||||
import TableSetting from '@/components/table-setting/index.vue';
|
|
||||||
import LayoutContent from '@/layout/layout-content.vue';
|
|
||||||
import { dateFormat } from '@/utils/util';
|
|
||||||
import { onMounted, reactive, ref } from '@vue/runtime-core';
|
|
||||||
import { loadSSHLogs } from '@/api/modules/host';
|
|
||||||
|
|
||||||
const loading = ref();
|
|
||||||
const data = ref();
|
|
||||||
const paginationConfig = reactive({
|
|
||||||
currentPage: 1,
|
|
||||||
pageSize: 10,
|
|
||||||
total: 0,
|
|
||||||
});
|
|
||||||
const searchInfo = ref();
|
|
||||||
const searchStatus = ref('All');
|
|
||||||
const successfulCount = ref(0);
|
|
||||||
const faliedCount = ref(0);
|
|
||||||
|
|
||||||
const search = async () => {
|
|
||||||
let params = {
|
|
||||||
info: searchInfo.value,
|
|
||||||
status: searchStatus.value,
|
|
||||||
page: paginationConfig.currentPage,
|
|
||||||
pageSize: paginationConfig.pageSize,
|
|
||||||
};
|
|
||||||
loading.value = true;
|
|
||||||
await loadSSHLogs(params)
|
|
||||||
.then((res) => {
|
|
||||||
loading.value = false;
|
|
||||||
data.value = res.data.logs || [];
|
|
||||||
faliedCount.value = res.data.failedCount;
|
|
||||||
successfulCount.value = res.data.successfulCount;
|
|
||||||
if (searchStatus.value === 'Success') {
|
|
||||||
paginationConfig.total = res.data.successfulCount;
|
|
||||||
}
|
|
||||||
if (searchStatus.value === 'Failed') {
|
|
||||||
paginationConfig.total = res.data.failedCount;
|
|
||||||
}
|
|
||||||
if (searchStatus.value === 'All') {
|
|
||||||
paginationConfig.total = res.data.failedCount + res.data.successfulCount;
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.catch(() => {
|
|
||||||
loading.value = false;
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
const onSearch = (status: string) => {
|
|
||||||
searchStatus.value = status;
|
|
||||||
search();
|
|
||||||
};
|
|
||||||
|
|
||||||
onMounted(() => {
|
|
||||||
search();
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang="scss">
|
|
||||||
.tagClass {
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
131
frontend/src/views/host/ssh/log/log.vue
Normal file
131
frontend/src/views/host/ssh/log/log.vue
Normal file
|
@ -0,0 +1,131 @@
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<LayoutContent v-loading="loading" :title="$t('ssh.loginLogs')">
|
||||||
|
<template #toolbar>
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="16">
|
||||||
|
<el-select v-model="searchStatus" @change="search()">
|
||||||
|
<template #prefix>{{ $t('commons.table.status') }}</template>
|
||||||
|
<el-option :label="$t('commons.table.all')" value="All"></el-option>
|
||||||
|
<el-option :label="$t('commons.status.success')" value="Success"></el-option>
|
||||||
|
<el-option :label="$t('commons.status.failed')" value="Failed"></el-option>
|
||||||
|
</el-select>
|
||||||
|
<el-button type="success" plain @click="onSearch('Success')" style="margin-left: 25px">
|
||||||
|
{{ $t('commons.status.success') }}: {{ successfulCount }}
|
||||||
|
</el-button>
|
||||||
|
<el-button type="danger" plain @click="onSearch('Failed')" style="margin-left: 5px">
|
||||||
|
{{ $t('commons.status.failed') }}: {{ faliedCount }}
|
||||||
|
</el-button>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<TableSetting @search="search()" />
|
||||||
|
<div class="search-button">
|
||||||
|
<el-input
|
||||||
|
v-model="searchInfo"
|
||||||
|
@clear="search()"
|
||||||
|
clearable
|
||||||
|
suffix-icon="Search"
|
||||||
|
@keyup.enter="search()"
|
||||||
|
@change="search()"
|
||||||
|
:placeholder="$t('commons.button.search')"
|
||||||
|
></el-input>
|
||||||
|
</div>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<template #main>
|
||||||
|
<ComplexTable :pagination-config="paginationConfig" :data="data" @search="search">
|
||||||
|
<el-table-column min-width="60" :label="$t('logs.loginIP')" prop="address" />
|
||||||
|
<el-table-column min-width="30" :label="$t('ssh.belong')" prop="isLocal">
|
||||||
|
<template #default="{ row }">{{ row.isLocal ? $t('ssh.local') : $t('ssh.remote') }}</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column min-width="40" :label="$t('firewall.port')" prop="port" />
|
||||||
|
<el-table-column min-width="40" :label="$t('ssh.loginMode')" prop="authMode">
|
||||||
|
<template #default="{ row }">
|
||||||
|
<span v-if="row.authMode">{{ $t('ssh.' + row.authMode) }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column min-width="40" :label="$t('ssh.loginUser')" prop="user" />
|
||||||
|
<el-table-column min-width="40" :label="$t('logs.loginStatus')" prop="status">
|
||||||
|
<template #default="{ row }">
|
||||||
|
<div v-if="row.status === 'Success'">
|
||||||
|
<el-tag type="success">{{ $t('commons.status.success') }}</el-tag>
|
||||||
|
</div>
|
||||||
|
<div v-else>
|
||||||
|
<el-tooltip class="box-item" effect="dark" :content="row.message" placement="top-start">
|
||||||
|
<el-tag type="danger">{{ $t('commons.status.failed') }}</el-tag>
|
||||||
|
</el-tooltip>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="date"
|
||||||
|
:label="$t('commons.table.date')"
|
||||||
|
:formatter="dateFormat"
|
||||||
|
show-overflow-tooltip
|
||||||
|
/>
|
||||||
|
</ComplexTable>
|
||||||
|
</template>
|
||||||
|
</LayoutContent>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import ComplexTable from '@/components/complex-table/index.vue';
|
||||||
|
import TableSetting from '@/components/table-setting/index.vue';
|
||||||
|
import LayoutContent from '@/layout/layout-content.vue';
|
||||||
|
import { dateFormat } from '@/utils/util';
|
||||||
|
import { onMounted, reactive, ref } from '@vue/runtime-core';
|
||||||
|
import { loadSSHLogs } from '@/api/modules/host';
|
||||||
|
|
||||||
|
const loading = ref();
|
||||||
|
const data = ref();
|
||||||
|
const paginationConfig = reactive({
|
||||||
|
currentPage: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
total: 0,
|
||||||
|
});
|
||||||
|
const searchInfo = ref();
|
||||||
|
const searchStatus = ref('All');
|
||||||
|
const successfulCount = ref(0);
|
||||||
|
const faliedCount = ref(0);
|
||||||
|
|
||||||
|
const search = async () => {
|
||||||
|
let params = {
|
||||||
|
info: searchInfo.value,
|
||||||
|
status: searchStatus.value,
|
||||||
|
page: paginationConfig.currentPage,
|
||||||
|
pageSize: paginationConfig.pageSize,
|
||||||
|
};
|
||||||
|
loading.value = true;
|
||||||
|
await loadSSHLogs(params)
|
||||||
|
.then((res) => {
|
||||||
|
loading.value = false;
|
||||||
|
data.value = res.data.logs || [];
|
||||||
|
faliedCount.value = res.data.failedCount;
|
||||||
|
successfulCount.value = res.data.successfulCount;
|
||||||
|
if (searchStatus.value === 'Success') {
|
||||||
|
paginationConfig.total = res.data.successfulCount;
|
||||||
|
}
|
||||||
|
if (searchStatus.value === 'Failed') {
|
||||||
|
paginationConfig.total = res.data.failedCount;
|
||||||
|
}
|
||||||
|
if (searchStatus.value === 'All') {
|
||||||
|
paginationConfig.total = res.data.failedCount + res.data.successfulCount;
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(() => {
|
||||||
|
loading.value = false;
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const onSearch = (status: string) => {
|
||||||
|
searchStatus.value = status;
|
||||||
|
search();
|
||||||
|
};
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
search();
|
||||||
|
});
|
||||||
|
</script>
|
|
@ -25,5 +25,9 @@ const buttons = [
|
||||||
label: i18n.global.t('logs.system'),
|
label: i18n.global.t('logs.system'),
|
||||||
path: '/logs/system',
|
path: '/logs/system',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
label: i18n.global.t('ssh.loginLogs'),
|
||||||
|
path: '/logs/ssh',
|
||||||
|
},
|
||||||
];
|
];
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Add table
Reference in a new issue