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

charts_config.js « components « usage_trends « analytics « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ea11ecb0c5bd8e9b416d2627e53499671cce739e (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
import { s__, __ } from '~/locale';
import query from '../graphql/queries/usage_count.query.graphql';

const noDataMessage = s__('UsageTrends|No data available.');

export default [
  {
    loadChartError: s__(
      'UsageTrends|Could not load the projects and groups chart. Please refresh the page to try again.',
    ),
    noDataMessage,
    chartTitle: s__('UsageTrends|Total projects & groups'),
    yAxisTitle: s__('UsageTrends|Total projects & groups'),
    xAxisTitle: s__('UsageTrends|Month'),
    queries: [
      {
        query,
        title: s__('UsageTrends|Total projects'),
        identifier: 'PROJECTS',
        loadError: s__('UsageTrends|There was an error fetching the projects. Please try again.'),
      },
      {
        query,
        title: s__('UsageTrends|Total groups'),
        identifier: 'GROUPS',
        loadError: s__('UsageTrends|There was an error fetching the groups. Please try again.'),
      },
    ],
  },
  {
    loadChartError: s__(
      'UsageTrends|Could not load the pipelines chart. Please refresh the page to try again.',
    ),
    noDataMessage,
    chartTitle: s__('UsageTrends|Pipelines'),
    yAxisTitle: s__('UsageTrends|Items'),
    xAxisTitle: s__('UsageTrends|Month'),
    queries: [
      {
        query,
        title: s__('UsageTrends|Pipelines total'),
        identifier: 'PIPELINES',
        loadError: s__(
          'UsageTrends|There was an error fetching the total pipelines. Please try again.',
        ),
      },
      {
        query,
        title: s__('UsageTrends|Pipelines succeeded'),
        identifier: 'PIPELINES_SUCCEEDED',
        loadError: s__(
          'UsageTrends|There was an error fetching the successful pipelines. Please try again.',
        ),
      },
      {
        query,
        title: s__('UsageTrends|Pipelines failed'),
        identifier: 'PIPELINES_FAILED',
        loadError: s__(
          'UsageTrends|There was an error fetching the failed pipelines. Please try again.',
        ),
      },
      {
        query,
        title: s__('UsageTrends|Pipelines canceled'),
        identifier: 'PIPELINES_CANCELED',
        loadError: s__(
          'UsageTrends|There was an error fetching the cancelled pipelines. Please try again.',
        ),
      },
      {
        query,
        title: s__('UsageTrends|Pipelines skipped'),
        identifier: 'PIPELINES_SKIPPED',
        loadError: s__(
          'UsageTrends|There was an error fetching the skipped pipelines. Please try again.',
        ),
      },
    ],
  },
  {
    loadChartError: s__(
      'UsageTrends|Could not load the issues and merge requests chart. Please refresh the page to try again.',
    ),
    noDataMessage,
    chartTitle: s__('UsageTrends|Issues & merge requests'),
    yAxisTitle: s__('UsageTrends|Items'),
    xAxisTitle: s__('UsageTrends|Month'),
    queries: [
      {
        query,
        title: __('Issues'),
        identifier: 'ISSUES',
        loadError: s__('UsageTrends|There was an error fetching the issues. Please try again.'),
      },
      {
        query,
        title: __('Merge requests'),
        identifier: 'MERGE_REQUESTS',
        loadError: s__(
          'UsageTrends|There was an error fetching the merge requests. Please try again.',
        ),
      },
    ],
  },
];