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 }