summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/environments/components/environment_monitoring.vue
blob: 26bec12544502528204a8e449c39dc272e689711 (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
<script>
/**
 * Renders the Monitoring (Metrics) link in environments table.
 */
import { GlButton } from '@gitlab-org/gitlab-ui';
import Icon from '~/vue_shared/components/icon.vue';
import tooltip from '../../vue_shared/directives/tooltip';

export default {
  components: {
    Icon,
    GlButton,
  },
  directives: {
    tooltip,
  },
  props: {
    monitoringUrl: {
      type: String,
      required: true,
    },
  },
  computed: {
    title() {
      return 'Monitoring';
    },
  },
};
</script>
<template>
  <gl-button
    v-tooltip
    :href="monitoringUrl"
    :title="title"
    :aria-label="title"
    class="monitoring-url d-none d-sm-none d-md-block"
    data-container="body"
    rel="noopener noreferrer nofollow"
    variant="default"
  >
    <icon name="chart" />
  </gl-button>
</template>