| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- <template>
- <div>
- <dashboard-cards ref="dashboardCards" useLocalPanels :extraParams="extraParams" :localPanels="localPanels" />
- </div>
- </template>
- <script>
- import DashboardCards from '@Monitor/components/MonitorCard/DashboardCards'
- import WindowsMixin from '@/mixins/windows'
- import { CONTAINER_MONITOR } from '../constants'
- export default {
- name: 'MonitorListForVmPodContainerSidepage',
- components: {
- DashboardCards,
- },
- mixins: [WindowsMixin],
- props: {
- data: {
- type: Object,
- required: true,
- },
- },
- data () {
- return {
- currentMonitorType: 'basic',
- monitorConstants: CONTAINER_MONITOR,
- extraTags: [{
- key: 'container_name',
- operator: '=',
- value: this.data.name,
- }],
- }
- },
- computed: {
- localPanels () {
- return this.monitorConstants.map(item => {
- return {
- panel_name: `${item.label}${item.metric ? `(${item.metric})` : `(${item.fromItem}.${item.seleteItem})`}`,
- constants: item,
- queryData: this.genQueryData(item),
- }
- })
- },
- },
- methods: {
- genQueryData (val) {
- const opt = val
- val.extraTags = this.extraTags
- let select = []
- if (val.as) {
- const asItems = val.as.split(',')
- select = val.seleteItem.split(',').map((val, i) => {
- return [
- {
- type: 'field',
- params: [val],
- },
- { // 对应 mean(val.seleteItem)
- type: opt.groupFunc || opt.selectFunction || 'mean',
- params: [],
- },
- { // 确保后端返回columns有 val.label 的别名
- type: 'alias',
- params: [asItems[i]],
- },
- ]
- })
- } else {
- select = val.seleteItem.split(',').map((val, i) => {
- return [
- {
- type: 'field',
- params: [val],
- },
- { // 对应 mean(val.seleteItem)
- type: opt.groupFunc || opt.selectFunction || 'mean',
- params: [],
- },
- { // 确保后端返回columns有 val.label 的别名
- type: 'alias',
- params: [val],
- },
- ]
- })
- }
- const model = {
- measurement: val.fromItem,
- select,
- group_by: [
- // { type: 'tag', params: ['host_id'] },
- ],
- tags: [
- {
- key: 'pod_id',
- value: this.data.guest_id,
- operator: '=',
- },
- ...val.extraTags,
- ],
- }
- if (val.groupBy && val.groupBy.length > 0) {
- val.groupBy.forEach(group => {
- model.group_by.push({
- type: 'tag',
- params: [group],
- })
- })
- }
- const data = {
- metric_query: [
- {
- model,
- },
- ],
- scope: this.$store.getters.scope,
- unit: true,
- skip_check_series: true,
- }
- return data
- },
- },
- }
- </script>
|