Welcome to mirror list, hosted at ThFree Co, Russian Federation.

grafana_integration.vue « components « grafana_integration « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3911201457f70b4a38ad94dea21a23d92b447496 (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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<script>
import {
  GlButton,
  GlFormGroup,
  GlFormInput,
  GlFormCheckbox,
  GlIcon,
  GlLink,
  GlSprintf,
} from '@gitlab/ui';
import { mapState, mapActions } from 'vuex';
import { helpPagePath } from '~/helpers/help_page_helper';

export default {
  components: {
    GlButton,
    GlFormCheckbox,
    GlFormGroup,
    GlFormInput,
    GlIcon,
    GlLink,
    GlSprintf,
  },
  data() {
    return {
      helpUrl: helpPagePath('operations/metrics/embed_grafana', {
        anchor: 'use-integration-with-grafana-api',
      }),
      placeholderUrl: 'https://my-grafana.example.com/',
    };
  },
  computed: {
    ...mapState(['operationsSettingsEndpoint', 'grafanaToken', 'grafanaUrl', 'grafanaEnabled']),
    integrationEnabled: {
      get() {
        return this.grafanaEnabled;
      },
      set(grafanaEnabled) {
        this.setGrafanaEnabled(grafanaEnabled);
      },
    },
    localGrafanaToken: {
      get() {
        return this.grafanaToken;
      },
      set(token) {
        this.setGrafanaToken(token);
      },
    },
    localGrafanaUrl: {
      get() {
        return this.grafanaUrl;
      },
      set(url) {
        this.setGrafanaUrl(url);
      },
    },
  },
  methods: {
    ...mapActions([
      'setGrafanaUrl',
      'setGrafanaToken',
      'setGrafanaEnabled',
      'updateGrafanaIntegration',
    ]),
  },
};
</script>

<template>
  <section id="grafana" class="settings no-animate js-grafana-integration">
    <div class="settings-header">
      <h4
        class="js-section-header settings-title js-settings-toggle js-settings-toggle-trigger-only"
      >
        {{ s__('GrafanaIntegration|Grafana authentication') }}
      </h4>
      <gl-button class="js-settings-toggle">{{ __('Expand') }}</gl-button>
      <p class="js-section-sub-header">
        {{
          s__(
            'GrafanaIntegration|Set up Grafana authentication to embed Grafana panels in GitLab Flavored Markdown.',
          )
        }}
        <gl-link :href="helpUrl">{{ __('Learn more.') }}</gl-link>
      </p>
    </div>
    <div class="settings-content">
      <form>
        <gl-form-group :label="__('Enable authentication')" label-for="grafana-integration-enabled">
          <gl-form-checkbox id="grafana-integration-enabled" v-model="integrationEnabled">
            {{ s__('GrafanaIntegration|Active') }}
          </gl-form-checkbox>
        </gl-form-group>
        <gl-form-group
          :label="s__('GrafanaIntegration|Grafana URL')"
          label-for="grafana-url"
          :description="s__('GrafanaIntegration|Enter the base URL of the Grafana instance.')"
        >
          <gl-form-input id="grafana-url" v-model="localGrafanaUrl" :placeholder="placeholderUrl" />
        </gl-form-group>
        <gl-form-group :label="s__('GrafanaIntegration|API token')" label-for="grafana-token">
          <gl-form-input id="grafana-token" v-model="localGrafanaToken" />
          <p class="form-text text-muted">
            <gl-sprintf
              :message="
                s__('GrafanaIntegration|Enter the %{docLinkStart}Grafana API token%{docLinkEnd}.')
              "
            >
              <template #docLink="{ content }">
                <gl-link
                  href="https://grafana.com/docs/http_api/auth/#create-api-token"
                  target="_blank"
                  >{{ content }} <gl-icon name="external-link" class="gl-vertical-align-middle"
                /></gl-link>
              </template>
            </gl-sprintf>
          </p>
        </gl-form-group>
        <gl-button
          variant="confirm"
          category="primary"
          data-testid="save-grafana-settings-button"
          @click="updateGrafanaIntegration"
        >
          {{ __('Save changes') }}
        </gl-button>
      </form>
    </div>
  </section>
</template>