This commit is contained in:
zhangzhiqiang
2023-02-09 13:41:30 +08:00
parent 071f8fa1bb
commit e395ac5803
2 changed files with 71 additions and 254 deletions

View File

@@ -2,7 +2,7 @@ import request from '@/utils/request'
export function getLogData(param) { export function getLogData(param) {
return request({ return request({
url: 'api/loki/logs', url: '/api/esLog/query',
method: 'post', method: 'post',
data: param data: param
}) })
@@ -10,7 +10,7 @@ export function getLogData(param) {
export function labelsValues() { export function labelsValues() {
return request({ return request({
url: 'api/esLog/labels', url: '/api/esLog/labels',
method: 'get' method: 'get'
}) })
} }

View File

@@ -8,12 +8,11 @@
v-model="labelAndValue" v-model="labelAndValue"
:options="labelsOptions" :options="labelsOptions"
placeholder="请选择标签" placeholder="请选择标签"
@change="queryData"
/> />
</el-form-item> </el-form-item>
<el-form-item label="关键字"> <el-form-item label="关键字">
<el-input <el-input
v-model="text" v-model="message"
size="mini" size="mini"
placeholder="请输入内容" placeholder="请输入内容"
clearable clearable
@@ -48,35 +47,47 @@
<span class="el-icon-sort" @click="changeShow" /> <span class="el-icon-sort" @click="changeShow" />
</el-tooltip> </el-tooltip>
</el-form-item> </el-form-item>
<el-form-item label="方向"> <el-form-item label="SQL日志" prop="filterSql">
<el-radio-group v-model="direction" size="mini" @change="queryData"> <el-switch
<el-radio label="backward">backward</el-radio> v-model="filterSql"
<el-radio label="forward">forward</el-radio> active-color="#409EFF"
</el-radio-group> inactive-color="#F56C6C"
active-value="1"
inactive-valu="0"
/>
</el-form-item>
<el-form-item label="HTTP日志" prop="isRequest">
<el-switch
v-model="isRequest"
active-color="#409EFF"
inactive-color="#F56C6C"
active-value="1"
inactive-valu="0"
/>
</el-form-item> </el-form-item>
<el-form-item label="显示条数"> <el-form-item label="显示条数">
<el-input-number <el-input-number
v-model="limits" v-model="size"
size="mini" size="mini"
controls-position="right" controls-position="right"
:min="100" :min="20"
:max="5000" :max="5000"
:step="100" :step="10"
/> />
</el-form-item> </el-form-item>
<el-form-item label="滚动步数"> <el-form-item label="当前页">
<el-input-number <el-input-number
v-model="scrollStep" v-model="page"
size="mini" size="mini"
controls-position="right" controls-position="right"
:min="10" :min="1"
:max="2000" :max="2000"
:step="10" :step="1"
/> />
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-dropdown split-button type="primary" size="mini" @click="queryData"> <el-dropdown split-button type="primary" size="mini" @click="queryData">
查询{{ runStatu }} 查询
<el-dropdown-menu slot="dropdown"> <el-dropdown-menu slot="dropdown">
<el-dropdown-item v-for="(item, index) in runStatuOptions" :key="index" @click.native="startInterval(item)">{{ item.label }}</el-dropdown-item> <el-dropdown-item v-for="(item, index) in runStatuOptions" :key="index" @click.native="startInterval(item)">{{ item.label }}</el-dropdown-item>
</el-dropdown-menu> </el-dropdown-menu>
@@ -85,16 +96,16 @@
</el-form> </el-form>
</div> </div>
<div style="margin: 3px; min-height: 80vh;"> <div style="margin: 3px; min-height: 80vh;">
<!--数据判空--> <el-table :data="logs">
<el-empty v-if="showEmpty" :description="emptyText" /> <el-table-column label="ip" prop="requestIp" />
<!--数据加载--> <el-table-column label="请求时间" prop="requestTime" />
<el-card v-else shadow="hover" style="width: 100%" class="log-warpper"> <el-table-column label="trackId" prop="trackId" />
<div style="width: 100%"> <el-table-column label="请求时间" prop="requestTime" />
<div v-for="(log, index) in logs" :key="index"> <el-table-column label="请求接口" prop="requestMethod" />
<div style="margin-bottom: 5px; font-size: 12px;" v-html="log[1]" /> <el-table-column label="logger" prop="logger" />
</div> <el-table-column label="thread" prop="thread" />
</div> <el-table-column label="message" prop="message" />
</el-card> </el-table>
</div> </div>
</div> </div>
</template> </template>
@@ -102,39 +113,33 @@
<script> <script>
import logOperation from '@/views/loki/api/loki' import logOperation from '@/views/loki/api/loki'
import { default as AnsiUp } from 'ansi_up'
let queryParam = { let queryParam = {
logLabel: null, logLevel: null,
logLabelValue: null, startTime: null,
start: null, endTime: null,
end: null, message: null,
text: null, filterSql: true,
limits: 100, isRequest: true,
direction: 'backward' page: null,
size: 20
} }
export default { export default {
name: 'Loki', name: 'ES',
data() { data() {
return { return {
labelAndValue: [], // 搜索的值 labelAndValue: [], // 搜索的值
labelsOptions: [], // 所有标签和对应所有值数据 labelsOptions: [], // 所有标签和对应所有值数据
timeRange: [], timeRange: [],
text: '', message: '',
limits: 100, size: 20,
direction: 'backward',
logData: [], logData: [],
filterSql: '1',
isRequest: '1',
logs: [], // 所有日志 logs: [], // 所有日志
showEmpty: true, showEmpty: true,
emptyText: '请选择标签', emptyText: '请选择标签',
displayDirection: [{ page: 1,
value: 'backward',
label: '新的在前'
}, {
value: 'forward',
label: '旧的在前'
}],
scrollStep: 10,
runStatu: 'off', runStatu: 'off',
runStatuOptions: [{ runStatuOptions: [{
label: 'off', label: 'off',
@@ -193,25 +198,9 @@ export default {
showOptions: true showOptions: true
} }
}, },
mounted() {
window.addEventListener('scroll', this.handleScroll)
},
created() { created() {
this.initLabelsValues() this.initLabelsValues()
}, },
// 关闭定时器 - 加了缓存就必须使用deactivated
deactivated() {
// js提供的clearInterval方法用来清除定时器
console.log('定时任务销毁')
clearInterval(this.timer)
window.removeEventListener('scroll', this.handleScroll)
},
beforeDestroy() {
// js提供的clearInterval方法用来清除定时器
console.log('定时任务销毁')
clearInterval(this.timer)
window.removeEventListener('scroll', this.handleScroll)
},
methods: { methods: {
initLabelsValues() { initLabelsValues() {
logOperation.labelsValues().then(res => { logOperation.labelsValues().then(res => {
@@ -219,66 +208,24 @@ export default {
}) })
}, },
queryData() { queryData() {
console.log(this.labelAndValue)
// 清空查询数据 // 清空查询数据
this.clearParam() this.clearParam()
if (this.labelAndValue.length > 0) { queryParam.logLabel = this.labelAndValue[0]
queryParam.logLabel = this.labelAndValue[0] const time = new Date()
queryParam.logLabelValue = this.labelAndValue[1] if (this.timeZoneValue !== '') {
queryParam.endTime = ((time.getTime() - this.timeZoneValue) * 1000000).toString()
} }
if (queryParam.logLabelValue === null) { // 判空 queryParam.message = this.message.replace(/^\s*|\s*$/g, '')
this.$message({ queryParam.filterSql = this.filterSql === '1'
showClose: true, queryParam.isRequest = this.filterSql === '1'
message: '请选择标签', queryParam.size = this.size
type: 'warning' queryParam.page = this.page
})
this.showEmpty = true
this.emptyText = '请选择标签'
return
}
if (this.timeRange.length !== 0) { // 如果是输入时间范围
queryParam.start = (new Date(this.timeRange[0]).getTime() * 1000000).toString()
queryParam.end = (new Date(this.timeRange[1]).getTime() * 1000000).toString()
}
if (this.timeZoneValue) {
const time = new Date()
queryParam.start = ((time.getTime() - this.timeZoneValue) * 1000000).toString()
queryParam.end = (time.getTime() * 1000000).toString()
}
if (this.text) {
queryParam.text = this.text.replace(/^\s*|\s*$/g, '')
}
if (this.limits) {
queryParam.limits = this.limits
}
queryParam.direction = this.direction
var ansi_up = new AnsiUp()
logOperation.getLogData(queryParam).then(res => { logOperation.getLogData(queryParam).then(res => {
this.showEmpty = false this.showEmpty = false
if (res.data.result.length === 1) { // 清空
this.logs = res.data.result[0].values this.logs = []
for (const i in res.data.result[0].values) { for (const j in res.records) { // 用push的方式将所有日志数组添加进去
this.logs[i][1] = ansi_up.ansi_to_html(res.data.result[0].values[i][1]) this.logs.push(res.records[j])
}
} else if (res.data.result.length > 1) {
// 清空
this.logs = []
for (const j in res.data.result) { // 用push的方式将所有日志数组添加进去
for (const values_index in res.data.result[j].values) {
this.logs.push(res.data.result[j].values[values_index])
}
}
for (const k in this.logs) {
this.logs[k][1] = ansi_up.ansi_to_html(this.logs[k][1])
}
if (this.direction === 'backward') { // 由于使用公共标签会导致时间顺序错乱,因此对二维数组进行排序
this.logs.sort((a, b) => b[0] - a[0])
} else {
this.logs.sort((a, b) => a[0] - b[0])
}
} else {
this.showEmpty = true
this.emptyText = '暂无日志信息,请选择时间段试试'
} }
}) })
}, },
@@ -286,144 +233,14 @@ export default {
queryParam = { queryParam = {
logLabel: null, logLabel: null,
logLabelValue: null, logLabelValue: null,
start: null, startTime: null,
end: null, endTime: null,
text: null, message: null,
limits: 100, isRequest: true,
direction: 'backward' filterSql: true,
size: 20
} }
}, },
handleScroll() { // 滚动事件
const scrollTop = document.documentElement.scrollTop// 滚动高度
const clientHeight = document.documentElement.clientHeight// 可视高度
const scrollHeight = document.documentElement.scrollHeight// 内容高度
const bottomest = Math.ceil(scrollTop + clientHeight)
if (bottomest >= scrollHeight) {
// 加载新数据
queryParam.limits = this.scrollStep
queryParam.direction = this.direction
// 获取时间差
let zone = queryParam.end - queryParam.start
if (this.timeRange.length) { // 如果是输入时间范围
zone = ((new Date(this.timeRange[1]).getTime() - new Date(this.timeRange[0]).getTime()) * 1000000).toString()
}
if (this.timeZoneValue) {
zone = this.timeZoneValue * 1000000
}
if (zone === 0) {
zone = 3600 * 1000 * 6
}
if (this.direction === 'backward') { // 设置时间区间
queryParam.start = (this.logs[this.logs.length - 1][0] - zone).toString()
queryParam.end = this.logs[this.logs.length - 1][0]
} else {
queryParam.start = this.logs[this.logs.length - 1][0]
queryParam.end = (parseFloat(this.logs[this.logs.length - 1][0]) + parseFloat(zone.toString())).toString()
}
var ansi_up = new AnsiUp()
logOperation.getLogData(queryParam).then(res => {
this.showEmpty = false
if (res.data.result.length === 1) {
const log = res.data.result[0].values
for (const i in res.data.result[0].values) {
log[i][1] = ansi_up.ansi_to_html(res.data.result[0].values[i][1])
this.logs.push(log[i])
}
} else if (res.data.result.length > 1) {
const tempArray = [] // 数据需要处理,由于是追加数组,所以需要用额外变量来存放
// 刷新就是添加,不清空原数组
for (const j in res.data.result) { // 用push的方式将所有日志数组添加进去
for (const values_index in res.data.result[j].values) {
tempArray.push(res.data.result[j].values[values_index])
}
}
if (this.direction === 'backward') { // 由于使用公共标签会导致时间顺序错乱,因此对二维数组进行排序
tempArray.sort((a, b) => b[0] - a[0])
} else {
tempArray.sort((a, b) => a[0] - b[0])
}
for (const k in tempArray) {
tempArray[k][1] = ansi_up.ansi_to_html(tempArray[k][1]) // 数据转换
this.logs.push(tempArray[k]) // 追加数据
}
} else {
this.$notify({
title: '警告',
duration: 1000,
message: '暂无以往日志数据!',
type: 'warning'
})
}
})
}
},
startInterval(item) {
this.runStatu = item.label
console.log(item.value)
if (item.value !== 0) {
this.timer = setInterval(() => { // 定时刷新
this.intervalLogs()
}, item.value)
} else {
console.log('销毁了')
clearInterval(this.timer)
}
},
intervalLogs() { // 定时器的方法
// 组织参数
// 设置开始时间和结束时间
// 开始为现在时间
const start = new Date()
const end = new Date()
// 时差判断
let zone = queryParam.end - queryParam.start
if (this.timeRange.length) { // 如果是输入时间范围
zone = ((new Date(this.timeRange[1]).getTime() - new Date(this.timeRange[0]).getTime()) * 1000000).toString()
}
if (this.timeZoneValue) {
zone = this.timeZoneValue * 1000000
}
if (zone === 0) { // 防止空指针
start.setTime(start.getTime() - 3600 * 1000 * 6)
queryParam.start = (start.getTime() * 1000000).toString()
} else {
queryParam.start = (start.getTime() * 1000000 - zone).toString()
}
queryParam.end = (end.getTime() * 1000000).toString()
queryParam.limits = this.limits
console.log('定时器最后参数:', queryParam)
var ansi_up = new AnsiUp() // 后端日志格式转化
logOperation.getLogData(queryParam).then(res => {
console.log('res', res)
this.showEmpty = false
debugger
if (res.data.result.length === 1) {
this.logs = res.data.result[0].values
for (const i in res.data.result[0].values) { // 格式转换
this.logs[i][1] = ansi_up.ansi_to_html(res.data.result[0].values[i][1])
}
} else if (res.data.result.length > 1) {
// 清空
this.logs = []
for (const j in res.data.result) { // 用push的方式将所有日志数组添加进去
for (const values_index in res.data.result[j].values) {
this.logs.push(res.data.result[j].values[values_index])
}
}
for (const k in this.logs) {
this.logs[k][1] = ansi_up.ansi_to_html(this.logs[k][1])
}
if (this.direction === 'backward') { // 由于使用公共标签会导致时间顺序错乱,因此对二维数组进行排序
this.logs.sort((a, b) => b[0] - a[0])
} else {
this.logs.sort((a, b) => a[0] - b[0])
}
} else {
this.showEmpty = true
this.emptyText = '暂无日志信息,请选择时间段试试'
}
})
},
changeShow() { changeShow() {
// 清空数据 // 清空数据
this.timeZoneValue = '' this.timeZoneValue = ''