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) {
return request({
url: 'api/loki/logs',
url: '/api/esLog/query',
method: 'post',
data: param
})
@@ -10,7 +10,7 @@ export function getLogData(param) {
export function labelsValues() {
return request({
url: 'api/esLog/labels',
url: '/api/esLog/labels',
method: 'get'
})
}