You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

32 lines
589 B

import request from '@/utils/request'
export function getLogData(param) {
return request({
url: 'api/lucene/getAll',
method: 'get',
data: param
})
}
export function labelsValues() {
return request({
url: 'api/loki/labels/values',
method: 'get'
})
}
export function getDeviceLogType() {
return request({
url: 'api/lucene/getDeviceLogType',
method: 'get'
})
}
export function getLogTypes() {
return request({
url: 'api/lucene/getLogTypes',
method: 'get'
})
}
export default { getLogData, labelsValues, getDeviceLogType, getLogTypes }