Skip to content
Snippets Groups Projects
Commit 147d55d2 authored by Mike Greiling's avatar Mike Greiling
Browse files

extract prometheus graph group elements into their own component

parent 4138c20c
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -3,6 +3,7 @@
import _ from 'underscore';
import statusCodes from '../../lib/utils/http_status';
import MonitoringService from '../services/monitoring_service';
import GraphGroup from './graph_group.vue';
import GraphRow from './graph_row.vue';
import EmptyState from './empty_state.vue';
import MonitoringStore from '../stores/monitoring_store';
Loading
Loading
@@ -31,6 +32,7 @@
},
 
components: {
GraphGroup,
GraphRow,
EmptyState,
},
Loading
Loading
@@ -120,29 +122,24 @@
 
<template>
<div v-if="!showEmptyState" class="prometheus-graphs">
<div
<graph-group
v-for="(groupData, index) in store.groups"
:key="index"
class="panel panel-default prometheus-panel"
:name="groupData.group"
>
<div class="panel-heading">
<h4>{{groupData.group}}</h4>
</div>
<div class="panel-body">
<graph-row
v-for="(row, index) in groupData.metrics"
:key="index"
:row-data="row"
:update-aspect-ratio="updateAspectRatio"
:deployment-data="store.deploymentData"
/>
</div>
</div>
<graph-row
v-for="(row, index) in groupData.metrics"
:key="index"
:row-data="row"
:update-aspect-ratio="updateAspectRatio"
:deployment-data="store.deploymentData"
/>
</graph-group>
</div>
<empty-state
v-else
:selected-state="state"
:documentation-path="documentationPath"
:settings-path="settingsPath"
v-else
/>
</template>
<script>
export default {
props: {
name: {
type: String,
required: true,
},
},
};
</script>
<template>
<div class="panel panel-default prometheus-panel">
<div class="panel-heading">
<h4>{{name}}</h4>
</div>
<div class="panel-body">
<slot />
</div>
</div>
</template>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment