summaryrefslogtreecommitdiffstats
path: root/test-scheduler/ui/src/components/test_result.vue
diff options
context:
space:
mode:
Diffstat (limited to 'test-scheduler/ui/src/components/test_result.vue')
-rw-r--r--test-scheduler/ui/src/components/test_result.vue21
1 files changed, 21 insertions, 0 deletions
diff --git a/test-scheduler/ui/src/components/test_result.vue b/test-scheduler/ui/src/components/test_result.vue
new file mode 100644
index 00000000..37bbc4da
--- /dev/null
+++ b/test-scheduler/ui/src/components/test_result.vue
@@ -0,0 +1,21 @@
+<template>
+ <div>
+ <iframe style='min-height: 700px;' height='100%' width='100%'
+ v-bind:src='frameSrc'>
+ </iframe>
+ </div>
+</template>
+
+<script>
+
+export default {
+ data: function() {
+ return {
+ frameSrc: this.global.GRAFANA_ADDR
+ }
+ }
+}
+</script>
+
+<style scoped>
+</style>