summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/serverless/components/function_details.vue
blob: b8906cfca4e2a566ecced2dac5abe7e964d47429 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<script>
import _ from 'underscore';
import { mapState, mapActions, mapGetters } from 'vuex';
import PodBox from './pod_box.vue';
import Url from './url.vue';
import AreaChart from './area.vue';
import MissingPrometheus from './missing_prometheus.vue';

export default {
  components: {
    PodBox,
    Url,
    AreaChart,
    MissingPrometheus,
  },
  props: {
    func: {
      type: Object,
      required: true,
    },
    hasPrometheus: {
      type: Boolean,
      required: false,
      default: false,
    },
    clustersPath: {
      type: String,
      required: true,
    },
    helpPath: {
      type: String,
      required: true,
    },
  },
  data() {
    return {
      elWidth: 0,
    };
  },
  computed: {
    name() {
      return this.func.name;
    },
    description() {
      return _.isString(this.func.description) ? this.func.description : '';
    },
    funcUrl() {
      return this.func.url;
    },
    podCount() {
      return Number(this.func.podcount) || 0;
    },
    ...mapState(['graphData', 'hasPrometheusData']),
    ...mapGetters(['hasPrometheusMissingData']),
  },
  created() {
    this.fetchMetrics({
      metricsPath: this.func.metricsUrl,
      hasPrometheus: this.hasPrometheus,
    });
  },
  mounted() {
    this.elWidth = this.$el.clientWidth;
  },
  methods: {
    ...mapActions(['fetchMetrics']),
  },
};
</script>

<template>
  <section id="serverless-function-details">
    <h3 class="serverless-function-name">{{ name }}</h3>
    <div class="append-bottom-default serverless-function-description">
      <div v-for="(line, index) in description.split('\n')" :key="index">{{ line }}</div>
    </div>
    <url :uri="funcUrl" />

    <h4>{{ s__('ServerlessDetails|Kubernetes Pods') }}</h4>
    <div v-if="podCount > 0">
      <p>
        <b v-if="podCount == 1">{{ podCount }} {{ s__('ServerlessDetails|pod in use') }}</b>
        <b v-else>{{ podCount }} {{ s__('ServerlessDetails|pods in use') }}</b>
      </p>
      <pod-box :count="podCount" />
      <p>
        {{
          s__('ServerlessDetails|Number of Kubernetes pods in use over time based on necessity.')
        }}
      </p>
    </div>
    <div v-else><p>No pods loaded at this time.</p></div>

    <area-chart v-if="hasPrometheusData" :graph-data="graphData" :container-width="elWidth" />
    <missing-prometheus
      v-if="!hasPrometheus || hasPrometheusMissingData"
      :help-path="helpPath"
      :clusters-path="clustersPath"
      :missing-data="hasPrometheusMissingData"
    />
  </section>
</template>