summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/analytics/instance_statistics/components/charts_config.js
blob: 6fba3c56cfeb61933b086f8530a617c140171a04 (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
import { s__, __, sprintf } from '~/locale';
import query from '../graphql/queries/instance_count.query.graphql';

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

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