| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323 |
- <template>
- <a-row>
- <a-col :span="isTemplate ? 24 : undefined" :md="isTemplate ? 24 : 24" :lg="isTemplate ? 24 : 22" :xl="isTemplate ? 24 : 16" :xxl="isTemplate ? 24 : 10" class="mb-5">
- <monitor-forms
- @refresh="refresh"
- @remove="remove"
- @resetChart="resetChart"
- :timeRangeParams="timeRangeParams"
- @mertricItemChange="mertricItemChange"
- :extraParams="extraParams"
- :multiQuery="!isTemplate"
- :panel="templateParams?.panel" />
- </a-col>
- <a-col :span="isTemplate ? 24 : undefined" class="line mb-5" :md="isTemplate ? 24 : 24" :lg="isTemplate ? 24 : 22" :xl="isTemplate ? 24 : 16" :xxl="isTemplate ? { span: 24 } : { span: 13, offset: 1 }">
- <monitor-header
- class="mb-3"
- :time.sync="time"
- :timeGroup.sync="timeGroup"
- :showTimegroup="true"
- :showGroupFunc="true"
- :customTime.sync="customTime"
- :showCustomTimeText="time==='custom'"
- :showCustomTime="!isTemplate"
- customTimeUseTimeStamp
- @refresh="fetchAllData" />
- <div v-for="(item, i) in seriesList" :key="i">
- <monitor-line
- :ref="`monitorLine${i}`"
- :loading="loadingList[i]"
- :description="seriesDescription[i]"
- :metricInfo="metricList[i][0]"
- class="mb-3"
- :isTemplate="isTemplate"
- @chartInstance="setChartInstance"
- :series="item"
- :reducedResult="resultList[i]"
- :timeFormatStr="timeFormatStr"
- :pager="seriesListPager[i]"
- :reducedResultOrder="resultOrderList[i]"
- showTableExport
- @pageChange="pageChange"
- @exportTable="(total) => exportTable(i, total)"
- @reducedResultOrderChange="(order) => reducedResultOrderChange(i, order)">
- <template #extra>
- <a-button class="mr-3" type="link" @click="handleSave(metricList[i], seriesDescription[i])">{{ $t('common.save') }}</a-button>
- </template>
- </monitor-line>
- </div>
- <a-card v-if="!seriesList.length && loadingList[0]" class="explorer-monitor-line d-flex align-items-center justify-content-center">
- <loader :loading="true" />
- </a-card>
- </a-col>
- </a-row>
- </template>
- <script>
- import get from 'lodash/get'
- import echarts from 'echarts'
- import DialogMixin from '@/mixins/dialog'
- import WindowsMixin from '@/mixins/windows'
- import MonitorForms from '@Monitor/sections/ExplorerForm'
- import MonitorLine from '@Monitor/sections/MonitorLine'
- import MonitorHeader from '@/sections/Monitor/Header'
- import { getRequestT } from '@/utils/utils'
- import { getSignature } from '@/utils/crypto'
- import { timeOpts } from '@/constants/monitor'
- import MonitorTimeMixin from '@/mixins/monitorTime'
- import { addMissingSeries } from '@Monitor/utils'
- export default {
- name: 'ExplorerIndex',
- components: {
- MonitorForms,
- MonitorLine,
- MonitorHeader,
- },
- mixins: [DialogMixin, WindowsMixin, MonitorTimeMixin],
- props: {
- isTemplate: {
- type: Boolean,
- default: false,
- },
- isTemplateEdit: {
- type: Boolean,
- default: false,
- },
- templateParams: {
- type: Object,
- default: () => ({}),
- },
- },
- data () {
- return {
- time: this.templateParams?.queryParams?.time || '1h',
- timeGroup: this.templateParams?.queryParams?.timeGroup || '1m',
- // groupFunc: 'mean',
- customTime: null,
- timeOpts,
- metricList: [],
- seriesList: [],
- resultList: [],
- resultOrderList: [],
- seriesListPager: [],
- chartInstanceList: [], // e-chart 实例
- loadingList: [],
- seriesDescription: [],
- get,
- tablePageSize: 10,
- }
- },
- computed: {
- timeFormatStr () {
- return this.timeOpts[this.time].timeFormat
- },
- timeRangeParams () {
- const params = {}
- if (this.time === 'custom') { // 自定义时间
- if (this.customTime && this.customTime.from && this.customTime.to) {
- params.from = this.customTime.from
- params.to = this.customTime.to
- }
- } else if (this.time === 'last_month') {
- // 计算当前时间到上个月第一天0点的小时数
- const now = this.$moment()
- const lastMonthStart = this.$moment().subtract(1, 'month').startOf('month') // 上个月第一天0点
- const lastMonthEnd = this.$moment().subtract(1, 'month').endOf('month') // 上个月最后一天23:59:59
- // from: 当前时间距离上个月1号0点多少个小时(取整)
- const fromHours = Math.floor(now.diff(lastMonthStart, 'hours', true))
- // to: 当前时间距离上个月最后一天23:59:59多少个小时(取整)
- const toHours = Math.floor(now.diff(lastMonthEnd, 'hours', true))
- params.from = `${fromHours}h`
- params.to = `${toHours}h`
- } else {
- params.from = this.time
- }
- return params
- },
- },
- watch: {
- timeGroup () {
- this.fetchAllData()
- },
- time () {
- this.smartFetchAllData()
- },
- customTime () {
- this.smartFetchAllData()
- },
- // groupFunc () {
- // this.fetchAllData()
- // },
- },
- methods: {
- initTablePageSize (size) {
- this.tablePageSize = size
- },
- smartFetchAllData () { // 根据选择的时间范围智能的赋值时间间隔进行查询
- this.$nextTick(this.fetchAllData)
- },
- remove (i) {
- this.metricList.splice(i, 1)
- this.chartInstanceList.splice(i, 1)
- this.seriesList.splice(i, 1)
- this.resultList.splice(i, 1)
- this.resultOrderList.splice(i, 1)
- this.loadingList.splice(i, 1)
- },
- setChartInstance (val, i) {
- this.chartInstanceList.push(val)
- echarts.connect(this.chartInstanceList)
- },
- resetChart (i) {
- if (this.seriesList && this.seriesList.length && this.seriesList[i]) {
- this.$set(this.seriesList, i, [])
- this.$set(this.resultList, i, [])
- this.$set(this.resultOrderList, i, '')
- this.$set(this.metricList, i, [])
- this.$set(this.seriesDescription[i], 'title', '')
- }
- },
- mertricItemChange (item, i) {
- const t = +this.time.replace(/\D+/, '')
- const existBalance = this.seriesDescription.find(val => val.id === 'balance')
- if (!this.isTemplate && !existBalance && item.id === 'balance' && ~this.time.indexOf('h') && t < 3) { // 时间都是转换成h了,这里仅需要对比h即可
- this.time = '72h'
- this.$message.warning(this.$t('common_562', [item.label]))
- }
- if (this.isTemplate && (!item.title || item.title === '-') && i === 0 && this.templateParams?.panel?.panel_name) {
- // 从 templateParams 中获取 common_alert_metric_details 信息,确保保存时能正确获取参数
- const metricDetails = this.templateParams?.panel?.common_alert_metric_details?.[0] || {}
- const updatedItem = {
- ...item,
- title: this.templateParams?.panel?.panel_name,
- // 如果 item 中缺少这些信息,从 templateParams 中补充
- metric_res_type: item.metric_res_type || metricDetails.res_type,
- metricKeyItem: item.metricKeyItem || (metricDetails.measurement ? { measurement: metricDetails.measurement } : item.metricKeyItem),
- key: item.key || metricDetails.field,
- }
- this.$set(this.seriesDescription, i, updatedItem)
- } else {
- this.$set(this.seriesDescription, i, item)
- }
- },
- async fetchAllData () {
- const jobs = []
- this.loadingList = []
- for (let i = 0; i < this.metricList.length; i++) {
- const metric_query = this.metricList[i]
- this.loadingList.push(true)
- jobs.push(this.fetchData(metric_query, this.tablePageSize, 0))
- }
- try {
- const moment = this.$moment()
- const res = await Promise.all(jobs)
- this.seriesList = res.map(val => addMissingSeries(get(val, 'series') || [], { ...this.timeRangeParams, interval: this.timeGroup }, moment))
- this.resultList = res.map(val => get(val, 'reduced_result') || [])
- this.resultOrderList = res.map(() => '')
- this.seriesListPager = res.map((val, index) => ({ seriesIndex: index, total: get(val, 'series_total') || 0, page: 1, limit: this.tablePageSize }))
- this.loadingList = this.loadingList.map(v => false)
- this.saveMonitorConfig()
- } catch (error) {
- this.loadingList = this.loadingList.map(v => false)
- throw error
- }
- },
- async _refresh (i, limit, offset, ignoreOrder) {
- try {
- this.$set(this.loadingList, i, true)
- const { series = [], reduced_result = [], series_total = 0 } = await this.fetchData(this.metricList[i], limit, offset)
- this.$set(this.seriesList, i, series)
- this.$set(this.resultList, i, reduced_result)
- if (!ignoreOrder) {
- this.$set(this.resultOrderList, i, '')
- }
- this.$set(this.seriesListPager, i, { seriesIndex: i, total: series_total, page: 1 + offset / limit, limit: limit })
- this.loadingList[i] = false
- } catch (error) {
- this.$set(this.seriesList, i, [])
- this.$set(this.resultList, i, [])
- if (!ignoreOrder) {
- this.$set(this.resultOrderList, i, '')
- }
- this.$set(this.loadingList, i, false)
- throw error
- }
- },
- async refresh (params, resParams, i) { // 将多个查询 分开调用
- const val = { model: params }
- if (resParams.type) {
- val.result_reducer = resParams
- }
- const metric_query = [val]
- this.$set(this.metricList, i, metric_query)
- await this._refresh(i, this.tablePageSize, 0)
- },
- reducedResultOrderChange (i, order) {
- this.resultOrderList[i] = order
- this.metricList[i][0].result_reducer_order = order
- this._refresh(i, this.seriesListPager[i].limit, 0, true)
- },
- async pageChange (pager) {
- await this._refresh(pager.seriesIndex, pager.limit, (pager.page - 1) * pager.limit)
- this.saveMonitorConfig({ tablePageSize: pager.limit })
- },
- async fetchData (metric_query, limit, offset) {
- try {
- const data = {
- metric_query,
- interval: this.timeGroup,
- scope: this.$store.getters.scope,
- slimit: limit,
- soffset: offset,
- ...this.timeRangeParams,
- }
- if (!data.metric_query || !data.metric_query.length || !data.from) return
- data.signature = getSignature(data)
- const { data: resdata } = await new this.$Manager('unifiedmonitors', 'v1').performAction({ id: 'query', action: '', data, params: { $t: getRequestT() } })
- return resdata
- } catch (error) {
- throw error
- }
- },
- handleSave (mq, desc) {
- this.createDialog('CreateMonitorDashboardChart', {
- name: desc.title,
- metric_query: mq,
- timeGroup: this.timeGroup,
- timeRangeParams: this.timeRangeParams,
- })
- },
- async exportTable (index, total) {
- try {
- const { series = [], reduced_result = [], series_total = 0 } = await this.fetchData(this.metricList[index], total, 0)
- if (this.$refs[`monitorLine${index}`] && this.$refs[`monitorLine${index}`][0] && this.$refs[`monitorLine${index}`][0].exportFullData) {
- this.$refs[`monitorLine${index}`][0].exportFullData(series, reduced_result, series_total)
- }
- } catch (error) {
- throw error
- }
- },
- getTemplateParams () {
- const description = this.seriesDescription[0] || {}
- const metric = this.metricList[0]?.[0] || {}
- return {
- panel_name: description.title || description.label || '',
- time: this.time,
- timeGroup: this.timeGroup,
- model: metric.model || {},
- result_reducer: metric.result_reducer || '',
- common_alert_metric_details: [
- {
- res_type: description.metric_res_type || '',
- measurement: description.metricKeyItem?.measurement || '',
- field: description.key || '',
- },
- ],
- }
- },
- },
- }
- </script>
|